* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #1e1e1e;
    color: #d4d4d4;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.header {
    background: #2d2d30;
    padding: 10px 20px;
    border-bottom: 1px solid #3e3e42;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #569cd6;
}

.room-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.python-status {
    background: #3c3c3c;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    color: #ffd700;
}

.python-status.loading {
    color: #ffcc02;
}

.python-status.ready {
    color: #4caf50;
}

.sync-status {
    background: #3c3c3c;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    color: #ffd700;
}

.sync-status.loading {
    color: #ffcc02;
}

.sync-status.ready {
    color: #4caf50;
}

.room-id {
    background: #3c3c3c;
    padding: 5px 10px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 12px;
}

.main-container {
    display: flex;
    height: calc(100vh - 85px);
    overflow: hidden;
}

.sidebar {
    width: 250px;
    min-width: 150px;
    max-width: 500px;
    background: #252526;
    border-right: 1px solid #3e3e42;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.sidebar-header {
    padding: 10px;
    background: #2d2d30;
    border-bottom: 1px solid #3e3e42;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-title {
    font-size: 14px;
    font-weight: bold;
    color: #cccccc;
}

.new-file-btn {
    background: #0e639c;
    color: white;
    border: none;
    padding: 4px 8px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
}

.new-file-btn:hover {
    background: #1177bb;
}

.file-tree {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    max-height: calc(100vh - 120px);
}

.file-item {
    display: flex;
    align-items: center;
    padding: 5px 8px;
    cursor: pointer;
    border-radius: 3px;
    margin-bottom: 2px;
    position: relative;
    gap: 8px;
}

.file-item:hover {
    background: #2a2d2e;
}

.file-item.active {
    background: #094771;
    color: white;
}

.file-icon {
    margin-right: 8px;
    font-size: 14px;
    flex-shrink: 0;
}

.file-name {
    font-size: 13px;
    flex: 1;
    min-width: 0; /* Allow shrinking */
}

.file-editors {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

.file-actions {
    display: none;
    gap: 4px;
    flex-shrink: 0;
}

.file-item:hover .file-actions {
    display: flex;
}

.file-action {
    background: none;
    border: none;
    color: #cccccc;
    cursor: pointer;
    padding: 2px 4px;
    border-radius: 2px;
    font-size: 12px;
}

.file-action:hover {
    background: #3e3e42;
}

.editor-panel {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #3e3e42;
}

.tabs {
    display: flex;
    background: #2d2d30;
    border-bottom: 1px solid #3e3e42;
    overflow-x: auto;
    flex-shrink: 0;
}

.tab {
    padding: 10px 20px;
    cursor: pointer;
    background: #2d2d30;
    border-right: 1px solid #3e3e42;
    transition: background 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab.active {
    background: #1e1e1e;
    color: #569cd6;
}

.tab:hover {
    background: #3e3e42;
}

.tab-close {
    color: #cccccc;
    cursor: pointer;
    font-size: 12px;
    padding: 2px 4px;
    border-radius: 2px;
}

.tab-close:hover {
    background: #3e3e42;
}

.editor-content {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

.editor-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    min-height: 0;
    overflow: hidden;
}

.code-editor {
    width: 100%;
    height: 100%;
    background: #1e1e1e;
    color: #d4d4d4;
    border: none;
    outline: none;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.5;
    padding: 20px;
    resize: none;
    tab-size: 4;
}

.code-editor:focus {
    outline: none;
}

/* CodeMirror integration styles */
.CodeMirror {
    height: 100% !important;
    width: 100% !important;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    background: #1e1e1e !important;
    color: #d4d4d4 !important;
    border: none !important;
}

.CodeMirror-scroll {
    overflow-y: auto !important;
    overflow-x: auto !important;
    max-height: 100% !important;
}

.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
    background-color: #1e1e1e !important;
}

.CodeMirror-gutters {
    background: #1e1e1e !important;
    border-right: 1px solid #3e3e42 !important;
}

.CodeMirror-linenumber {
    color: #858585 !important;
}

.CodeMirror-cursor {
    border-left: 1px solid #d4d4d4 !important;
}

.CodeMirror-selected {
    background: #264f78 !important;
}

.CodeMirror-focused .CodeMirror-selected {
    background: #264f78 !important;
}

.CodeMirror-activeline-background {
    background: #2a2a2a !important;
}

.cm-s-monokai.CodeMirror {
    background: #1e1e1e !important;
    color: #d4d4d4 !important;
}

.cm-s-monokai .CodeMirror-gutters {
    background: #1e1e1e !important;
    border-right: 1px solid #3e3e42 !important;
}

.cm-s-monokai .CodeMirror-linenumber {
    color: #858585 !important;
}

.cm-s-monokai .CodeMirror-cursor {
    border-left: 1px solid #d4d4d4 !important;
}

.cm-s-monokai .CodeMirror-selected {
    background: #264f78 !important;
}

.cm-s-monokai.CodeMirror-focused .CodeMirror-selected {
    background: #264f78 !important;
}

.cm-s-monokai .CodeMirror-activeline-background {
    background: #2a2a2a !important;
}

.output-panel {
    width: 400px;
    min-width: 200px;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    background: #252526;
    flex-shrink: 0;
}

.output-tabs {
    display: flex;
    background: #2d2d30;
    border-bottom: 1px solid #3e3e42;
    flex-shrink: 0;
}

.output-tab {
    padding: 10px 20px;
    cursor: pointer;
    background: #2d2d30;
    border-right: 1px solid #3e3e42;
    transition: background 0.2s;
    flex: 1;
    text-align: center;
}

.output-tab.active {
    background: #252526;
    color: #569cd6;
}

.output-tab:hover {
    background: #3e3e42;
}

.output-content {
    flex: 1;
    position: relative;
}

.preview-frame {
    width: 100%;
    height: 100%;
    border: none;
    background: white;
}

.console-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #1e1e1e;
}

.console-output {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 12px;
    line-height: 1.4;
    background: #1e1e1e;
    color: #d4d4d4;
    max-height: calc(100vh - 200px);
    word-wrap: break-word;
}

.console-input {
    border-top: 1px solid #3e3e42;
    padding: 10px;
    background: #252526;
    display: flex;
    align-items: center;
}

.console-prompt {
    color: #569cd6;
    margin-right: 10px;
    font-family: monospace;
}

.console-input input {
    flex: 1;
    background: transparent;
    border: none;
    color: #d4d4d4;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 12px;
    outline: none;
}

.console-log {
    margin-bottom: 5px;
    word-wrap: break-word;
}

.console-log.error {
    color: #f44747;
}

.console-log.warn {
    color: #ffcc02;
}

.console-log.info {
    color: #569cd6;
}

.run-button {
    background: #0e639c;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.run-button:hover {
    background: #1177bb;
}

.flask-button {
    background: #28a745;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
    margin-left: 5px;
}

.flask-button:hover {
    background: #218838;
}

.deploy-button {
    background: #6f42c1;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
    margin-left: 5px;
}

.deploy-button:hover {
    background: #5a359a;
}

.status-bar {
    background: #007acc;
    color: white;
    padding: 8px 10px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 25px;
    min-height: 25px;
    line-height: 1;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4caf50;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.hidden {
    display: none !important;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #2d2d30;
    margin: 5% auto;
    padding: 20px;
    border-radius: 5px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    color: #d4d4d4;
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #3e3e42;
    padding-bottom: 15px;
}

.modal-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.close:hover {
    color: #ffffff;
}

.close:hover {
    color: white;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 8px;
    background: #3c3c3c;
    border: 1px solid #5a5a5a;
    border-radius: 4px;
    color: #d4d4d4;
    font-family: inherit;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: #007acc;
}

.modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
}

.btn-primary {
    background: #0e639c;
    color: white;
}

.btn-primary:hover {
    background: #1177bb;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
}

.terminal-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #1e1e1e;
    position: relative;
}

.terminal-header {
    background: #2d2d30;
    padding: 8px 12px;
    border-bottom: 1px solid #3e3e42;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.terminal-title {
    font-size: 12px;
    color: #cccccc;
    font-weight: bold;
}

.terminal-clear {
    background: #3e3e42;
    color: #cccccc;
    border: none;
    padding: 4px 8px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 11px;
}

.terminal-clear:hover {
    background: #4e4e52;
}

.terminal-output {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    max-height: calc(100vh - 200px);
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 12px;
    line-height: 1.4;
    background: #1e1e1e;
    color: #d4d4d4;
    word-wrap: break-word;
    min-height: 0;
    scroll-behavior: smooth;
}

.terminal-input {
    border-top: 1px solid #3e3e42;
    padding: 10px;
    background: #252526;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.terminal-prompt {
    color: #569cd6;
    margin-right: 10px;
    font-family: monospace;
}

.terminal-input input {
    flex: 1;
    background: transparent;
    border: none;
    color: #d4d4d4;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 12px;
    outline: none;
}

/* Resize handles */
.resize-handle {
    background: #3e3e42;
    position: relative;
    user-select: none;
    transition: background 0.2s;
}

.resize-handle:hover {
    background: #569cd6;
}

.resize-handle-vertical {
    width: 4px;
    cursor: col-resize;
    min-height: 100%;
}

.resize-handle-horizontal {
    height: 4px;
    cursor: row-resize;
    min-width: 100%;
}

.resize-handle:active {
    background: #007acc;
}

.resizing {
    pointer-events: none;
    user-select: none;
}

.resizing * {
    pointer-events: none;
    user-select: none;
}

/* Responsive design */
@media (max-width: 768px) {
    .main-container {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        height: 200px;
    }
    
    .output-panel {
        width: 100%;
        height: 300px;
    }
}

/* Deploy Modal Styles */
.deploy-info {
    margin: 20px 0;
}

.deploy-option {
    margin-bottom: 20px;
    padding: 15px;
    background: #1e1e1e;
    border-radius: 8px;
    border: 1px solid #3e3e42;
}

.deploy-option h4 {
    margin: 0 0 10px 0;
    color: #ffffff;
    font-size: 16px;
}

.deploy-option p {
    margin: 0 0 10px 0;
    color: #cccccc;
    font-size: 14px;
    line-height: 1.4;
}

.link-container {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
}

.link-container input {
    flex: 1;
    padding: 10px 12px;
    background: #2d2d30;
    border: 1px solid #3e3e42;
    color: #ffffff;
    border-radius: 4px;
    font-family: monospace;
    font-size: 12px;
}

.link-container input:focus {
    outline: none;
    border-color: #007acc;
}

.copy-btn {
    background: #0e639c;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.2s;
    white-space: nowrap;
}

.copy-btn:hover {
    background: #1177bb;
}

.copy-btn.copied {
    background: #28a745;
}

.deploy-stats {
    background: #2d2d30;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #3e3e42;
    margin-top: 20px;
}

.deploy-stats p {
    margin: 0 0 10px 0;
    color: #ffffff;
    font-weight: bold;
}

.deploy-stats ul {
    margin: 0;
    padding-left: 20px;
    color: #cccccc;
}

.deploy-stats li {
    margin: 5px 0;
    font-size: 14px;
}

.deploy-stats span {
    color: #ffd700;
    font-family: monospace;
    font-weight: bold;
}

/* Username Modal Styles */
.username-info {
    margin: 20px 0;
}

.username-info p {
    margin-bottom: 15px;
    color: #cccccc;
    line-height: 1.4;
}

.username-info input {
    width: 100%;
    padding: 12px;
    background: #1e1e1e;
    border: 1px solid #3e3e42;
    color: #ffffff;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 10px;
}

.username-info input:focus {
    outline: none;
    border-color: #007acc;
}

.username-note {
    font-size: 12px !important;
    color: #888888 !important;
    font-style: italic;
}

/* Active Users Display */
.active-users {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 10px;
    padding: 5px 8px;
    background: #3c3c3c;
    border-radius: 4px;
    font-size: 12px;
}

.users-label {
    color: #cccccc;
    font-weight: bold;
}

.users-list {
    position: relative;
}

.users-dropdown-container {
    position: relative;
}

.users-summary {
    color: #cccccc;
    font-size: 12px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 3px;
    transition: background-color 0.2s;
    user-select: none;
}

.users-summary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.users-dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    background: #2d2d30;
    border: 1px solid #3e3e42;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    min-width: 200px;
    max-height: 300px;
    overflow-y: auto;
    margin-top: 5px;
}

.users-dropdown-content.hidden {
    display: none;
}

.user-dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    gap: 10px;
    border-bottom: 1px solid #3e3e42;
    transition: background-color 0.2s;
}

.user-dropdown-item:hover {
    background-color: #383838;
}

.user-dropdown-item:last-child {
    border-bottom: none;
}

.user-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 10px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.user-info {
    flex: 1;
}

.user-name {
    color: #d4d4d4;
    font-size: 12px;
    font-weight: bold;
}

.user-status {
    color: #888;
    font-size: 11px;
    font-style: italic;
}

.user-indicator {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 10px;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.2s;
}

.user-indicator:hover {
    transform: scale(1.1);
}

/* Simple Editor Dots */
.editor-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: 4px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.file-item {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.file-item .file-editors {
    opacity: 1;
    display: flex;
}

.file-item:hover .file-editors {
    opacity: 1;
}

/* Database Panel Styles */
.database-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #1e1e1e;
    position: relative;
}

.database-header {
    background: #2d2d30;
    padding: 8px 12px;
    border-bottom: 1px solid #3e3e42;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.database-title {
    font-size: 12px;
    color: #cccccc;
    font-weight: bold;
}

.database-type-selector {
    display: flex;
    align-items: center;
    gap: 8px;
}

.database-type-selector label {
    font-size: 11px;
    color: #cccccc;
}

.database-type-selector select {
    background: #3e3e42;
    color: #cccccc;
    border: 1px solid #5a5a5a;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 11px;
    cursor: pointer;
}

.database-type-selector select:focus {
    outline: none;
    border-color: #569cd6;
}

.database-actions {
    display: flex;
    gap: 8px;
}

.database-actions button {
    background: #3e3e42;
    color: #cccccc;
    border: none;
    padding: 4px 8px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 11px;
    transition: background 0.2s;
}

.database-actions button:hover {
    background: #4e4e52;
}

.db-refresh-btn {
    color: #4fc3f7 !important;
}

.db-add-btn {
    color: #81c784 !important;
}

.db-clear-btn {
    color: #e57373 !important;
}

.database-content {
    flex: 1;
    overflow-y: auto;
    max-height: calc(100vh - 200px);
    min-height: 0;
}

.database-stats {
    background: #2d2d30;
    padding: 8px 12px;
    border-bottom: 1px solid #3e3e42;
    font-size: 12px;
    color: #cccccc;
}

.database-table {
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 12px;
}

.database-entry {
    border-bottom: 1px solid #3e3e42;
    padding: 8px 12px;
    transition: background 0.2s;
}

.database-entry:hover {
    background: #2d2d30;
}

.database-entry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.database-key {
    color: #569cd6;
    font-weight: bold;
}

.database-type {
    color: #ce9178;
    font-size: 10px;
    background: #3e3e42;
    padding: 2px 6px;
    border-radius: 3px;
}

.database-timestamp {
    color: #808080;
    font-size: 10px;
}

.database-value {
    color: #d4d4d4;
    margin: 4px 0;
    word-wrap: break-word;
    white-space: pre-wrap;
}

.database-value.json {
    color: #ce9178;
}

.database-value.string {
    color: #ce9178;
}

.database-value.number {
    color: #b5cea8;
}

.database-value.boolean {
    color: #569cd6;
}

.database-actions-entry {
    display: flex;
    gap: 4px;
}

.database-actions-entry button {
    background: #3e3e42;
    color: #cccccc;
    border: none;
    padding: 2px 6px;
    border-radius: 2px;
    cursor: pointer;
    font-size: 10px;
}

.database-actions-entry button:hover {
    background: #4e4e52;
}

.database-edit-btn {
    color: #4fc3f7 !important;
}

.database-delete-btn {
    color: #e57373 !important;
}

.database-input {
    border-top: 1px solid #3e3e42;
    padding: 10px;
    background: #252526;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.database-input input {
    background: #3e3e42;
    border: 1px solid #5e5e62;
    color: #d4d4d4;
    padding: 6px 8px;
    border-radius: 3px;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 12px;
    outline: none;
}

.database-input input:focus {
    border-color: #569cd6;
    background: #404042;
}

.database-input button {
    background: #569cd6;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    transition: background 0.2s;
}

.database-input button:hover {
    background: #4db8e8;
}

/* SQL Table Styles */
.sql-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 11px;
}

.sql-table th {
    background: #2d2d30;
    color: #cccccc;
    padding: 8px;
    text-align: left;
    border: 1px solid #3e3e42;
    font-weight: bold;
}

.sql-table td {
    background: #1e1e1e;
    color: #d4d4d4;
    padding: 6px 8px;
    border: 1px solid #3e3e42;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sql-table tr:nth-child(even) td {
    background: #252526;
}

.sql-table tr:hover td {
    background: #2d2d30;
}

.sql-query-result {
    margin-top: 10px;
    padding: 10px;
    background: #252526;
    border: 1px solid #3e3e42;
    border-radius: 3px;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 11px;
}

.sql-query-success {
    color: #4caf50;
}

.sql-query-error {
    color: #e57373;
}

.sql-schema-viewer {
    margin-bottom: 10px;
    padding: 10px;
    background: #2d2d30;
    border-radius: 3px;
}

.sql-schema-table {
    background: #3e3e42;
    padding: 4px 8px;
    margin: 2px 0;
    border-radius: 2px;
    cursor: pointer;
    font-size: 11px;
}

.sql-schema-table:hover {
    background: #4e4e52;
}
