/**
 * Полные стили для адаптации исследований и генерации промптов
 * Nova Sapiens Research Platform v5.2 - DOCKER STYLE PROMPT SECTION
 * Собраны все стили + улучшенные блоки ввода и кнопки с блокировкой + Docker style prompt section
 * Обновлено: 23.08.2025 - добавлены Docker стили для prompt-section с красивым code блоком
 */

/* === ОСНОВНЫЕ КОНТЕЙНЕРЫ === */
.research-adaptation-section {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.adaptation-description {
    margin-bottom: 20px;
    color: #6c757d;
    font-size: 14px;
}

.adaptation-form-container, .prompt-form-container {
    margin-bottom: 20px;
}

.adaptation-form, .prompt-form {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #dee2e6;
}

/* === ВЫБОР МОДЕЛИ === */
.model-selection {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #495057;
}

.model-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    background: white;
    font-size: 14px;
    color: #495057;
}

.model-select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
}

/* === ПОЛЕ ВВОДА === */
.user-input {
    margin-bottom: 15px;
}

/* Контейнер для поля ввода в новом стиле */
.request-input-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.request-input-container:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}

.request-input-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #007bff, #28a745);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.request-input-container:focus-within::before {
    opacity: 1;
}

.user-request, .user-request-input {
    width: 100%;
    min-height: 120px;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    resize: vertical;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    color: #495057;
}

.user-request:focus, .user-request-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.15);
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}

.user-request::placeholder, .user-request-input::placeholder {
    color: #adb5bd;
    font-style: italic;
}

.char-counter, .character-counter {
    text-align: right;
    font-size: 13px;
    color: #6c757d;
    margin-top: 8px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.character-counter span {
    font-weight: 600;
    color: #495057;
}

/* Анимация при приближении к лимиту */
.character-counter.near-limit {
    color: #ffc107;
}

.character-counter.at-limit {
    color: #dc3545;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* === КНОПКИ === */
.form-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    margin-top: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.form-actions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #007bff, #28a745, #ffc107);
    opacity: 0.7;
}

.adaptation-btn, .adapt-btn, .prompt-btn {
    position: relative;
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 200px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.adaptation-btn::before, .adapt-btn::before, .prompt-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.adaptation-btn:hover::before, .adapt-btn:hover::before, .prompt-btn:hover::before {
    left: 100%;
}

.adaptation-btn, .adapt-btn {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 50%, #004085 100%);
    color: white;
    border: 2px solid rgba(255,255,255,0.1);
}

.adaptation-btn:hover, .adapt-btn:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 50%, #003366 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0,123,255,0.4);
}

.prompt-btn {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 50%, #155724 100%);
    color: white;
    border: 2px solid rgba(255,255,255,0.1);
}

.prompt-btn:hover {
    background: linear-gradient(135deg, #1e7e34 0%, #155724 50%, #0f4419 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(40,167,69,0.4);
}

.nova-adaptation-clear-btn {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(108,117,125,0.2);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nova-adaptation-clear-btn:hover {
    background: linear-gradient(135deg, #5a6268, #495057);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108,117,125,0.3);
}

.nova-adaptation-clear-btn:active {
    transform: translateY(0);
}

.nova-adaptation-clear-btn:focus {
    outline: 2px solid #6c757d;
    outline-offset: 2px;
}

/* === СОСТОЯНИЯ БЛОКИРОВКИ КНОПОК === */
.adaptation-btn:disabled, .adapt-btn:disabled, .prompt-btn:disabled {
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.adaptation-btn:disabled::before, .adapt-btn:disabled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(255,255,255,0.1) 0%,
        rgba(255,255,255,0.3) 25%,
        rgba(255,255,255,0.1) 50%,
        rgba(255,255,255,0.3) 75%,
        rgba(255,255,255,0.1) 100%
    );
    background-size: 40px 40px;
    animation: thinking-gradient 2s linear infinite;
    pointer-events: none;
}

.prompt-btn:disabled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(255,255,255,0.1) 0%,
        rgba(255,255,255,0.3) 25%,
        rgba(255,255,255,0.1) 50%,
        rgba(255,255,255,0.3) 75%,
        rgba(255,255,255,0.1) 100%
    );
    background-size: 40px 40px;
    animation: thinking-gradient 2s linear infinite;
    pointer-events: none;
}

@keyframes thinking-gradient {
    0% {
        background-position: -40px 0;
    }
    100% {
        background-position: 40px 0;
    }
}

/* Дополнительные стили для заблокированных кнопок */
.adaptation-btn:disabled, .adapt-btn:disabled {
    background: linear-gradient(135deg, #6c9bd1 0%, #5a7bb3 50%, #4a6699 100%);
    opacity: 0.8;
}

.prompt-btn:disabled {
    background: linear-gradient(135deg, #6ca86c 0%, #5a8e5a 50%, #4a7a4a 100%);
    opacity: 0.8;
}

/* Текст загрузки в кнопках */
.btn-text {
    position: relative;
    z-index: 2;
}

.btn-loading {
    position: relative;
    z-index: 2;
    display: none;
}

.adaptation-btn:disabled .btn-text, 
.adapt-btn:disabled .btn-text, 
.prompt-btn:disabled .btn-text {
    display: none;
}

.adaptation-btn:disabled .btn-loading, 
.adapt-btn:disabled .btn-loading, 
.prompt-btn:disabled .btn-loading {
    display: inline-block;
}

/* === ПРОГНОЗ ТОКЕНОВ В КНОПКАХ === */
.token-estimate {
    display: block;
    font-size: 11px;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 2px;
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

/* === ПРОГРЕСС-БАР === */
.progress-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 20px;
    margin: 15px 0;
    color: white;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    display: none;
}

.progress-container.active {
    display: block;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.progress-title {
    font-size: 18px;
    font-weight: 600;
}

.progress-timer {
    font-family: 'Courier New', monospace;
    font-size: 16px;
    background: rgba(255,255,255,0.2);
    padding: 5px 10px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.progress-circle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
}

.progress-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.progress-circle svg {
    display: none;
}

.progress-percentage {
    position: static;
    transform: none;
    font-size: 12px;
    font-weight: 600;
    color: white;
    text-align: center;
}

.progress-message {
    background: rgba(255,255,255,0.1);
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    text-align: center;
    backdrop-filter: blur(5px);
    transition: all 0.5s ease;
}

.progress-model-info {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    opacity: 0.8;
}

.model-name {
    font-weight: 500;
}

.estimated-time {
    font-style: italic;
}

/* === РЕЗУЛЬТАТЫ АДАПТАЦИИ === */
.adaptation-result, .prompt-result {
    margin-top: 20px;
    display: none;
}

.adaptation-result.active, .prompt-result.active {
    display: block;
}

.result-header {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 15px 20px;
    border-radius: 8px 8px 0 0;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-meta {
    font-size: 12px;
    opacity: 0.9;
}

.adapted-content, .explanation-content {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 0 0 8px 8px;
    padding: 20px;
    margin: 0;
    line-height: 1.6;
    font-size: 16px;
}

/* === ЗАГОЛОВКИ В РЕЗУЛЬТАТАХ === */
.adapted-content h1, .explanation-content h1 {
    color: #2c3e50;
    font-size: 24px;
    margin: 25px 0 15px 0;
    border-bottom: 3px solid #3498db;
    padding-bottom: 8px;
}

.adapted-content h2, .explanation-content h2 {
    color: #34495e;
    font-size: 20px;
    margin: 20px 0 10px 0;
    border-bottom: 2px solid #3498db;
    padding-bottom: 5px;
}

.adapted-content h3, .explanation-content h3 {
    color: #2c3e50;
    font-size: 18px;
    margin: 18px 0 8px 0;
    border-bottom: 1px solid #bdc3c7;
    padding-bottom: 3px;
}

/* === АБЗАЦЫ И СПИСКИ === */
.adapted-content p, .explanation-content p {
    margin: 15px 0;
    line-height: 1.6;
    color: #2c3e50;
}

.adapted-content ul, .explanation-content ul,
.adapted-content ol, .explanation-content ol {
    margin: 15px 0;
    padding-left: 30px;
}

.adapted-content li, .explanation-content li {
    margin: 8px 0;
    line-height: 1.6;
}

/* === БЛОКИ КОДА === */
.adapted-content pre, .explanation-content pre {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    overflow-x: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-size: 18px;
}

.adapted-content code, .explanation-content code {
    background: #e9ecef;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.adapted-content pre code, .explanation-content pre code {
    background: none;
    padding: 0;
    border-radius: 0;
    font-size: 18px;
}

/* === СПЕЦИАЛЬНЫЕ БЛОКИ MARKDOWN === */
.adapted-content pre code.language-markdown,
.explanation-content pre code.language-markdown {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #495057;
    font-family: "Courier New", monospace;
    display: block;
    padding: 10px;
    border-radius: 4px;
}

/* === КНОПКИ ДЕЙСТВИЙ === */
.result-actions {
    padding: 15px 20px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-radius: 0 0 8px 8px;
    display: flex;
    gap: 10px;
}

.copy-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.copy-btn:hover {
    background: #0056b3;
}

.copy-btn.copied {
    background: #28a745;
}

.download-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.download-btn:hover {
    background: #5a6268;
}

/* === СЕКЦИЯ ОБЪЯСНЕНИЯ === */
.explanation-section {
    margin-top: 35px;
}

/* === АДАПТИВНОСТЬ === */
@media (max-width: 768px) {
    .research-adaptation-section {
        padding: 15px;
        margin: 10px 0;
    }
    
    .request-input-container {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .user-request, .user-request-input {
        min-height: 100px;
        padding: 12px;
        font-size: 14px;
    }
    
    .character-counter {
        font-size: 12px;
        margin-top: 5px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 12px;
        padding: 15px;
    }
    
    .adaptation-btn, .adapt-btn, .prompt-btn {
        width: 100%;
        min-width: auto;
        min-height: 45px;
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .nova-adaptation-clear-btn {
        width: 100%;
        padding: 8px 16px;
    }
    
    .progress-container {
        padding: 15px;
        margin: 10px 0;
    }
    
    .progress-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .progress-model-info {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .result-header {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .result-actions {
        flex-direction: column;
    }
}

/* === АДАПТИВНОСТЬ ДЛЯ ПЛАНШЕТОВ === */
@media (max-width: 1024px) and (min-width: 769px) {
    .request-input-container {
        padding: 18px;
    }
    
    .user-request, .user-request-input {
        padding: 13px;
        font-size: 15px;
    }
    
    .form-actions {
        gap: 12px;
        padding: 18px;
    }
    
    .adaptation-btn, .adapt-btn, .prompt-btn {
        min-width: 180px;
        padding: 12px 24px;
    }
}

/* === ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ДЛЯ УЛУЧШЕНИЯ UX === */
.form-group {
    margin-bottom: 20px;
}

.help-text {
    font-size: 12px;
    color: #6c757d;
    margin-top: 5px;
}

.error-message {
    color: #dc3545;
    font-size: 14px;
    margin-top: 10px;
    padding: 10px;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
}

.success-message {
    color: #155724;
    font-size: 14px;
    margin-top: 10px;
    padding: 10px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
}

/* === АНИМАЦИИ === */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.adaptation-result.active, .prompt-result.active {
    animation: fadeIn 0.5s ease-out;
}

/* === УЛУЧШЕНИЯ ДЛЯ ACCESSIBILITY === */
.adaptation-btn:focus, .prompt-btn:focus, .nova-adaptation-clear-btn:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

.model-select:focus, .user-request:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* === БАЛАНС ТОКЕНОВ ПОЛЬЗОВАТЕЛЯ === */
.token-balance-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.token-balance-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.balance-icon {
    font-size: 16px;
}

.balance-text {
    color: #495057;
    font-weight: 500;
}

.balance-amount {
    color: #007bff;
    font-weight: 700;
    font-size: 16px;
}

.balance-unit {
    color: #6c757d;
    font-size: 14px;
}

.refresh-balance-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.2s ease;
    margin-left: auto;
}

.refresh-balance-btn:hover {
    background: #e9ecef;
    transform: rotate(180deg);
}

.balance-hint {
    color: #6c757d;
    font-size: 12px;
    font-style: italic;
    text-align: center;
}

#estimated-cost {
    color: #28a745;
    font-weight: 600;
}

/* === СТИЛИ ДЛЯ PROMPT SECTION (Docker Style) === */
.prompt-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e9ecef;
    border-radius: 12px;
    margin: 20px 0;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    position: relative;
}

.prompt-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #007bff 0%, #28a745 50%, #ffc107 100%);
}

.prompt-header {
    background: linear-gradient(135deg, #343a40 0%, #495057 100%);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #dee2e6;
    position: relative;
}

.prompt-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.copy-prompt-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,123,255,0.3);
}

.copy-prompt-btn:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,123,255,0.4);
}

.copy-prompt-btn:active {
    transform: translateY(0);
}

.prompt-content {
    background: #282c34;
    position: relative;
    overflow: hidden;
}

.prompt-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.prompt-code {
    background: #282c34 !important;
    color: #abb2bf !important;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'Courier New', monospace !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    padding: 20px !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    white-space: pre-wrap !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    tab-size: 4;
    -moz-tab-size: 4;
}

/* Подсветка синтаксиса для промптов */
.prompt-code {
    /* Основной цвет текста */
    color: #e6e6e6;
}

/* Стили для копирования */
.copy-text, .copied-text {
    transition: all 0.3s ease;
}

.copied-text {
    color: #28a745;
}

/* === АДАПТИВНОСТЬ ДЛЯ PROMPT SECTION === */
@media (max-width: 768px) {
    .prompt-section {
        margin: 15px 0;
        border-radius: 8px;
    }
    
    .prompt-header {
        padding: 12px 15px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .prompt-header h4 {
        font-size: 15px;
    }
    
    .copy-prompt-btn {
        width: 100%;
        padding: 10px;
    }
    
    .prompt-code {
        font-size: 13px !important;
        padding: 15px !important;
    }
}

@media (max-width: 480px) {
    .prompt-code {
        font-size: 12px !important;
        padding: 12px !important;
    }
}

/* === СТИЛИ ДЛЯ ПЕЧАТИ === */
@media print {
    .research-adaptation-section {
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .adaptation-btn, .prompt-btn, .nova-adaptation-clear-btn {
        display: none;
    }
    
    .progress-container, .token-balance-container {
        display: none;
    }
    
    .prompt-section {
        box-shadow: none;
        border: 2px solid #000;
    }
    
    .prompt-header {
        background: #f0f0f0 !important;
        color: #000 !important;
    }
    
    .prompt-content {
        background: #fff !important;
    }
    
    .prompt-code {
        background: #fff !important;
        color: #000 !important;
        border: 1px solid #ccc !important;
    }
    
    .copy-prompt-btn {
        display: none;
    }
}
