/* Import session management styles */
@import url('./session-styles.css');

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

body {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    background-color: #1a1a1a;
    color: #ffffff;
    line-height: 1.4;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* System and user message styles */
.system {
    color: #888;
    font-style: italic;
}

.user-input {
    color: #4a9eff;
    font-weight: bold;
}

.error {
    color: #ff6b6b;
    font-weight: bold;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    color: #e0e0e0;
}

.modal-content h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #4a9eff;
}

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

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

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #555;
    border-radius: 4px;
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-size: 14px;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #4a9eff;
}

.form-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

/* Thinking animation styling */
.thinking-animation {
    color: #888;
    font-style: italic;
    margin: 5px 0;
}

.thinking-dots {
    display: inline-block;
    width: 20px;
    text-align: left;
}

/* Interactive menu styling */
.interactive-menu {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 4px;
    padding: 10px;
    margin: 10px 0;
    font-family: inherit;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}

.status-bar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.controls .btn {
    min-width: 36px;
    height: 36px;
    padding: 6px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.controls .btn .material-icons {
    font-size: 18px;
}

/* General button icon styling */
.btn .material-icons {
    font-size: 18px;
}

.btn.small .material-icons {
    font-size: 16px;
}

/* Navigation button icons */
.nav-btn {
    height: 32px;
    min-width: 32px;
    padding: 6px;
}

.nav-btn .material-icons {
    font-size: 18px;
}

/* Close button icons */
.close-btn .material-icons {
    font-size: 14px;
}

/* Form action buttons */
.form-actions .btn {
    height: 32px;
    min-width: 32px;
    padding: 6px;
}

.form-actions .btn .material-icons {
    font-size: 18px;
}

h1 {
    color: #ff9500;
    font-size: 24px;
    margin: 0;
}

.status {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    white-space: nowrap;
}

.status.connected {
    background-color: #28a745;
    color: white;
}

.status.connecting {
    background-color: #ffc107;
    color: #000;
}

.status.disconnected {
    background-color: #dc3545;
    color: white;
}

.status.error {
    background-color: #ff6b6b;
    color: white;
    animation: pulse 1s infinite;
}

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

.chat-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #000;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.terminal {
    flex: 1;
    padding: 15px;
    padding-bottom: 120px; /* Space for sticky input section */
    overflow-y: auto;
    font-size: 14px;
    white-space: pre-wrap;
    word-wrap: break-word;
    background-color: #000;
    color: #ffffff;
    min-height: 400px;
    max-height: 60vh;
}

/* Preserve ANSI colors and formatting */
.terminal .ansi-bright-black { color: #555; }
.terminal .ansi-bright-red { color: #ff5555; }
.terminal .ansi-bright-green { color: #55ff55; }
.terminal .ansi-bright-yellow { color: #ffff55; }
.terminal .ansi-bright-blue { color: #5555ff; }
.terminal .ansi-bright-magenta { color: #ff55ff; }
.terminal .ansi-bright-cyan { color: #55ffff; }
.terminal .ansi-bright-white { color: #ffffff; }
.terminal .ansi-red { color: #aa0000; }
.terminal .ansi-green { color: #00aa00; }
.terminal .ansi-yellow { color: #aa5500; }
.terminal .ansi-blue { color: #0000aa; }
.terminal .ansi-magenta { color: #aa00aa; }
.terminal .ansi-cyan { color: #00aaaa; }
.terminal .ansi-white { color: #aaaaaa; }
.terminal .ansi-bold { font-weight: bold; }
.terminal .ansi-dim { opacity: 0.7; }
.terminal .ansi-underline { text-decoration: underline; }

.input-section {
    border-top: 1px solid #333;
    padding: 15px;
    background-color: #111;
    border: 2px solid #ff9500; /* Make it more visible for debugging */
    display: none; /* Hidden by default */
}

.input-section[style*="display: block"] {
    background-color: #222; /* Different background when visible */
    display: block !important; /* Force visibility when shown */
}

.input-line {
    display: block; /* Changed from flex to block for full width */
    margin-bottom: 10px;
}

/* Terminal block styles */
.terminal-block {
    margin-bottom: 8px;
    padding: 8px;
    border-radius: 4px;
    border-left: 3px solid transparent;
    white-space: pre-wrap; /* Preserve whitespace and line breaks */
    line-height: 1.2; /* Reduce line spacing */
}

.terminal-block-system {
    border-left-color: #666;
    background-color: rgba(102, 102, 102, 0.1);
}

.terminal-block-user {
    border-left-color: #4CAF50;
    background-color: rgba(76, 175, 80, 0.1);
}

.terminal-block-bot {
    border-left-color: #2196F3;
    background-color: rgba(33, 150, 243, 0.1);
}

.terminal-block:last-child {
    margin-bottom: 0;
}

/* Terminal message styles with colored borders */
.terminal-message {
    margin-bottom: 4px;
    padding: 8px 12px;
    border-left: 4px solid transparent;
    border-radius: 4px;
    white-space: pre-wrap;
    line-height: 1.2;
}

.terminal-message.user {
    border-left-color: #28a745;
    background-color: rgba(40, 167, 69, 0.1);
}

.terminal-message.bot {
    border-left-color: #1e3a8a;
    background-color: rgba(30, 58, 138, 0.1);
}

.terminal-message.system {
    border-left-color: #6c757d;
    background-color: rgba(108, 117, 125, 0.1);
}

.terminal-message.error {
    border-left-color: #dc3545;
    background-color: rgba(220, 53, 69, 0.1);
}

/* File Browser Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #2a2a2a;
    border-radius: 8px;
    padding: 1.5rem;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

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

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #444;
}

.file-browser-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #2a2a2a;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.file-list {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #444;
    border-radius: 4px;
    background: #1a1a1a;
}

.file-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid #333;
}

.file-item:hover {
    background: #333;
}

.file-item.selected {
    background: #4a9eff;
    color: white;
}

.file-item.directory {
    font-weight: 500;
}

.file-icon {
    margin-right: 0.5rem;
    font-size: 1.2em;
}

.file-name {
    flex: 1;
    margin-right: 1rem;
}

.file-type {
    font-size: 0.8em;
    color: #888;
    text-transform: uppercase;
}

.loading {
    text-align: center;
    padding: 2rem;
    color: #888;
}

/* Select Interface Styles */
.select-interface {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    margin: 10px 0;
    padding: 15px;
    display: none;
}

.select-header {
    margin-bottom: 15px;
}

.select-title {
    color: #ff9500;
    font-weight: bold;
    font-size: 16px;
}

.select-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.select-option {
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 4px;
    color: #e0e0e0;
    padding: 10px 15px;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 14px;
}

.select-option:hover {
    background: #3a3a3a;
    border-color: #555;
}

.select-option.selected {
    background: #0d7377;
    border-color: #14a085;
    color: #ffffff;
}

.select-option.selected:hover {
    background: #0e8287;
}

.select-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

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

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

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

.prompt-indicator {
    color: #ff9500;
    font-weight: bold;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 5px; /* Add space below prompt */
    display: block; /* Make it a block element */
}

#userInput {
    width: 100%; /* Full width */
    background-color: #222;
    color: #ffffff;
    border: 1px solid #444;
    border-radius: 4px;
    padding: 10px;
    font-family: inherit;
    font-size: 14px;
    resize: none;
    min-height: 72px; /* 3 rows * 24px line height */
    max-height: 240px; /* 10 rows * 24px line height */
    line-height: 1.4;
    overflow-y: auto;
    transition: height 0.1s ease;
    box-sizing: border-box; /* Include padding in width calculation */
}

#userInput:focus {
    outline: none;
    border-color: #ff9500;
    box-shadow: 0 0 5px rgba(255, 149, 0, 0.3);
}

.chat-input-container {
    position: relative;
    display: flex;
    align-items: flex-end;
    background: #222;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 8px 80px 8px 12px;
}

.chat-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 14px;
    line-height: 1.4;
    resize: none;
    outline: none;
    min-height: 20px;
    max-height: 120px;
    overflow-y: auto;
}

.chat-buttons {
    position: absolute;
    right: 8px;
    bottom: 8px;
    display: flex;
    gap: 4px;
}

.chat-buttons .btn {
    height: 28px;
    min-width: 28px;
    padding: 4px;
    border-radius: 4px;
}

.chat-buttons .btn .material-icons {
    font-size: 16px;
}

button {
    background-color: #ff9500;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    transition: background-color 0.2s;
}

button:hover:not(:disabled) {
    background-color: #e6850e;
}

button:disabled {
    background-color: #666;
    cursor: not-allowed;
}

#clearBtn {
    background-color: #6c757d;
}

#clearBtn:hover {
    background-color: #5a6268;
}

/* Scrollbar styling */
.terminal::-webkit-scrollbar {
    width: 8px;
}

.terminal::-webkit-scrollbar-track {
    background: #222;
}

.terminal::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 4px;
}

.terminal::-webkit-scrollbar-thumb:hover {
    background: #777;
}

/* Streaming animation */
.streaming-cursor {
    display: inline-block;
    width: 8px;
    height: 14px;
    background-color: #ff9500;
    animation: blink 1s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

.upload-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.upload-info {
    flex-basis: 100%;
    margin-top: 8px;
}

.upload-info small {
    color: #888;
    font-size: 12px;
}

.upload-info code {
    background: #333;
    padding: 2px 4px;
    border-radius: 2px;
    color: #ff9500;
    font-family: inherit;
}

.upload-controls button {
    background: #222;
    color: #ff9500;
    border: 1px solid #ff9500;
    border-radius: 4px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s, color 0.2s;
}
.upload-controls button:hover {
    background: #ff9500;
    color: #222;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

.modal-content {
    background-color: #1a1a1a;
    margin: 60px auto;
    padding: 24px 32px;
    border: 1px solid #333;
    border-radius: 8px;
    width: 90%;
    max-width: 480px;
    color: #fff;
    position: relative;
    box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

.close {
    color: #ff9500;
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}
.close:hover {
    color: #fff;
}

#filesList {
    list-style: none;
    padding: 0;
    margin: 18px 0 0 0;
}
#filesList li {
    margin-bottom: 10px;
}
#filesList a {
    color: #ff9500;
    text-decoration: underline;
    cursor: pointer;
    font-size: 15px;
}
#filesList a:hover {
    color: #fff;
    background: #ff9500;
    border-radius: 3px;
    padding: 2px 6px;
}
/* Session Tabs */
.session-tabs {
    display: flex;
    align-items: center;
    background: #2d3748;
    border-bottom: 1px solid #4a5568;
    padding: 0.5rem;
    gap: 1rem;
    flex-wrap: nowrap;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.tab-controls {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
    min-width: fit-content;
    align-items: center;
}

.tab-controls .btn.small {
    height: 32px;
    min-width: 32px;
    padding: 6px;
}

.tab-controls .btn.small .material-icons {
    font-size: 18px;
}

.tab-list {
    display: flex;
    gap: 0.25rem;
    flex: 1;
    overflow-x: auto;
    min-width: 0;
    scrollbar-width: thin;
    scrollbar-color: #4a5568 #2d3748;
}

.tab-list::-webkit-scrollbar {
    height: 4px;
}

.tab-list::-webkit-scrollbar-track {
    background: #2d3748;
}

.tab-list::-webkit-scrollbar-thumb {
    background: #4a5568;
    border-radius: 2px;
}

.tab-list::-webkit-scrollbar-thumb:hover {
    background: #718096;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .session-tabs {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .tab-controls {
        justify-content: center;
    }
    
    .tab-list {
        justify-content: flex-start;
    }
    
    .mobile-nav {
        display: flex;
        gap: 0.5rem;
    }
}

@media (min-width: 769px) {
    .mobile-nav {
        display: none;
    }
}

/* Mobile Navigation Buttons */
.nav-btn {
    background: #4a5568;
    border: 1px solid #718096;
    color: #e2e8f0;
    padding: 0.5rem 0.75rem;
    border-radius: 0.25rem;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background-color 0.2s;
}

.nav-btn:hover {
    background: #718096;
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.session-tab {
    display: flex;
    align-items: center;
    background: #4a5568;
    color: #e2e8f0;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
    white-space: nowrap;
    gap: 0.5rem;
    transition: background-color 0.2s;
    flex-shrink: 0;
}

.session-tab:hover {
    background: #718096;
}

.session-tab.active {
    background: #3182ce;
    color: white;
}

.session-tab .close-btn {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 0;
    margin-left: 0.5rem;
    font-size: 1.2em;
    line-height: 1;
    opacity: 0.7;
}

.session-tab .close-btn:hover {
    opacity: 1;
}

.session-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.session-terminal {
    display: none;
    flex: 1;
    padding-bottom: 120px; /* Space for sticky input section */
    overflow-y: auto;
    min-height: 0; /* Allow flex shrinking */
}

.session-terminal.active {
    display: flex;
    flex-direction: column;
    min-height: 0; /* Allow flex shrinking */
}

.session-input {
    display: none;
}

.session-input.active {
    display: block;
}

.btn.small {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}
/* New Session Modal */
.modal {
    display: flex;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal .modal-content {
    background-color: #2d3748;
    padding: 2rem;
    border-radius: 0.5rem;
    width: 90%;
    max-width: 400px;
    color: #e2e8f0;
}

.modal .modal-content h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #f7fafc;
}

.modal .form-group {
    margin-bottom: 1rem;
}

.modal .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.modal .form-group input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #4a5568;
    border-radius: 0.25rem;
    background-color: #1a202c;
    color: #e2e8f0;
    box-sizing: border-box;
}

.modal .form-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

/* Approval UI Styles */
.approval-section {
    display: none;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 4px;
    padding: 1rem;
    margin: 1rem 0;
    position: sticky;
    bottom: 140px;
    z-index: 101;
}

.approval-section.active {
    display: block;
}

.approval-message {
    margin-bottom: 1rem;
    font-weight: 500;
    color: #856404;
}

.approval-buttons {
    display: flex;
    gap: 0.5rem;
}

.approval-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    min-width: 80px;
}

.approval-btn.yes {
    background: #28a745;
    color: white;
}

.approval-btn.no {
    background: #dc3545;
    color: white;
}

.approval-btn.trust {
    background: #007bff;
    color: white;
}

.approval-btn:hover {
    opacity: 0.9;
}

.approval-shortcuts {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

/* File viewer styles - Dark theme */
.file-metadata-bar {
    background: #2d2d2d;
    border-bottom: 1px solid #444;
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #ccc;
    margin: -10px -10px 10px -10px;
}

.file-path {
    font-weight: 500;
    color: #fff;
}

.file-stats {
    color: #999;
}

.file-content {
    background: #1e1e1e;
    border: 1px solid #444;
    border-radius: 4px;
    padding: 0;
    margin: 0;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 13px;
    line-height: 1.4;
    overflow-x: auto;
    white-space: pre;
    color: #d4d4d4;
}

.file-content code {
    display: block;
    padding: 0;
    background: none;
}

.line-number {
    display: inline-block;
    width: 50px;
    padding: 0 8px;
    background: #252526;
    border-right: 1px solid #444;
    color: #858585;
    text-align: right;
    user-select: none;
    font-weight: normal;
}

.line-content {
    padding-left: 12px;
    color: #d4d4d4;
}

/* Enhanced syntax highlighting */
.file-content.javascript .line-content {
    color: #d4d4d4;
}

.file-content.javascript .line-content:has-text("function"),
.file-content.javascript .line-content:has-text("const"),
.file-content.javascript .line-content:has-text("let"),
.file-content.javascript .line-content:has-text("var") {
    color: #569cd6;
}

.file-content.json .line-content {
    color: #ce9178;
}

.file-content.css .line-content {
    color: #d7ba7d;
}

.file-content.html .line-content,
.file-content.xml .line-content {
    color: #92c5f8;
}

.file-content.markdown .line-content {
    color: #c586c0;
}

.file-content.bash .line-content {
    color: #4ec9b0;
}

.file-content.python .line-content {
    color: #dcdcaa;
}

.loading-message {
    text-align: center;
    padding: 40px;
    color: #ccc;
    font-style: italic;
}
/* Syntax highlighting classes */
.file-content .keyword {
    color: #569cd6;
}

.file-content .string {
    color: #ce9178;
}

.file-content .comment {
    color: #6a9955;
}

.file-content .number {
    color: #b5cea8;
}

.file-content .property {
    color: #92c5f8;
}
/* Prism.js integration with custom line numbers */
.prism-code {
    background: #1e1e1e !important;
    border: 1px solid #444;
    border-radius: 4px;
    margin: 0;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    color: #d4d4d4;
}

.prism-code code {
    background: none !important;
    color: inherit;
}

.prism-code .line-number {
    display: inline-block;
    width: 50px;
    padding: 0 8px;
    background: #252526;
    border-right: 1px solid #444;
    color: #858585;
    text-align: right;
    user-select: none;
    font-weight: normal;
}

.prism-code .line-content {
    padding-left: 12px;
    color: #d4d4d4;
}

/* Prism syntax highlighting tokens - Dark theme */
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
    color: #6a9955;
}

.token.punctuation {
    color: #d4d4d4;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
    color: #b5cea8;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
    color: #ce9178;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
    color: #d4d4d4;
}

.token.atrule,
.token.attr-value,
.token.keyword {
    color: #569cd6;
}

.token.function,
.token.class-name {
    color: #dcdcaa;
}

.token.regex,
.token.important,
.token.variable {
    color: #d16969;
}
