/* BRD/PRD Generator Styles - Following Established Layout Patterns */

.generator-container {
    flex: 1;
    padding: 0.5rem 0;
    overflow: hidden;
}

/* Generator Layout */
.generator-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 320px 1fr;
    height: calc(100vh - 150px);
    gap: 0;
}

/* Controls Sidebar */
.controls-sidebar {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
    overflow-y: auto;
    padding: 1.5rem;
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
}

.sidebar-title i {
    width: 20px;
    height: 20px;
    color: var(--accent-primary);
}

/* Control Sections */
.control-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.control-section:last-child {
    border-bottom: none;
}

.section-title {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* Full Width Controls */
#projectName,
#projectDescription,
#techStack,
#coreFeatures,
#targetUsers,
#businessGoals,
#successMetrics,
#constraints,
#integrations,
#additionalComments {
    width: 100%;
}

#projectDescription,
#coreFeatures,
#targetUsers,
#businessGoals,
#constraints,
#additionalComments {
    resize: vertical;
    min-height: 100px;
}

#generateBtn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Results Area */
.results-area {
    background: var(--bg-secondary);
    padding: 2rem;
    overflow: auto;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

@media (max-width: 600px) {
    .results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

.results-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.generation-status {
    font-size: 0.875rem;
    color: var(--text-secondary);
    background: var(--bg-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    border: 1px solid var(--border-light);
}

.generation-status.generating {
    color: var(--accent-primary);
    background: rgba(0, 180, 182, 0.1);
    border-color: var(--accent-primary);
}

.generation-status.success {
    color: var(--success);
    background: rgba(22, 163, 74, 0.1);
    border-color: var(--success);
}

.generation-status.error {
    color: var(--error);
    background: rgba(220, 38, 38, 0.1);
    border-color: var(--error);
}

/* Document Placeholder */
.document-placeholder {
    background: var(--bg-primary);
    border: 2px dashed var(--border-medium);
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.document-placeholder i {
    font-size: 3rem;
    color: var(--text-muted);
}

.document-placeholder h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin: 0;
}

.document-placeholder p {
    color: var(--text-secondary);
    margin: 0;
    max-width: 500px;
    line-height: 1.6;
}

.placeholder-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
    width: 100%;
    max-width: 600px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    justify-content: center;
}

.feature-item i {
    width: 16px;
    height: 16px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

/* Document Content Display */
.document-content-container {
    margin-bottom: 2rem;
}

.document-content {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
}

.document-content:hover {
    box-shadow: var(--shadow-md);
}

/* Document Header */
.document-header {
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-tertiary));
    padding: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.document-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.document-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.document-meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.document-meta-item i {
    width: 14px;
    height: 14px;
    color: var(--accent-primary);
}

/* Document Body */
.document-body {
    padding: 2rem;
    line-height: 1.7;
    color: var(--text-primary);
    font-size: 15px;
}

.document-body h1 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-primary);
    font-weight: 700;
    position: relative;
}

.document-body h1:first-child {
    margin-top: 0;
}

.document-body h1::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-primary);
    border-radius: 2px;
}

.document-body h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 1.75rem 0 1rem 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.document-body h2::before {
    content: '';
    width: 4px;
    height: 1.2em;
    background: var(--accent-primary);
    border-radius: 2px;
    flex-shrink: 0;
}

.document-body h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin: 1.5rem 0 0.75rem 0;
    font-weight: 600;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 0.25rem;
}

.document-body h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 1.25rem 0 0.5rem 0;
    font-weight: 600;
}

.document-body p {
    margin: 0 0 1.2rem 0;
    color: var(--text-primary);
    text-align: justify;
}

.document-body ul,
.document-body ol {
    margin: 0 0 1.2rem 0;
    padding-left: 2rem;
}

.document-body ul {
    list-style: none;
}

.document-body ul li {
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    padding-left: 1rem;
}

.document-body ul li::before {
    content: '•';
    color: var(--accent-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

.document-body ol li {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    padding-left: 0.5rem;
}

/* Nested lists with better styling */
.document-body ul ul {
    margin: 0.5rem 0 0.5rem 1rem;
    padding-left: 1.5rem;
}

.document-body ul ul li::before {
    content: '◦';
    color: var(--accent-secondary);
    font-size: 1em;
}

.document-body ul ul ul li::before {
    content: '▪';
    color: var(--text-muted);
}

/* Bold text in lists (like Phase headers) */
.document-body li strong {
    color: var(--accent-primary);
    font-weight: 600;
}

.document-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-primary);
}

.document-body th,
.document-body td {
    padding: 1rem 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
    vertical-align: top;
}

.document-body th {
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--border-medium);
}

.document-body td {
    color: var(--text-primary);
    border-right: 1px solid var(--border-light);
}

.document-body td:last-child,
.document-body th:last-child {
    border-right: none;
}

.document-body tr:last-child td {
    border-bottom: none;
}

.document-body tr:nth-child(even) {
    background: rgba(0, 180, 182, 0.02);
}

.document-body tr:hover {
    background: rgba(0, 180, 182, 0.05);
    transition: background-color 0.2s ease;
}

.document-body blockquote {
    border-left: 4px solid var(--accent-primary);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: rgba(0, 180, 182, 0.05);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--text-secondary);
    position: relative;
}

.document-body blockquote::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent-primary);
    position: absolute;
    top: -0.5rem;
    left: 0.5rem;
    opacity: 0.3;
}

/* Code Blocks and Technical Content */
.document-body code {
    background: var(--bg-tertiary);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', 'Courier New', monospace;
    font-size: 0.875rem;
    color: var(--accent-primary);
    border: 1px solid var(--border-light);
    font-weight: 500;
}

.document-body pre {
    background: var(--bg-tertiary);
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    border: 1px solid var(--border-medium);
    margin: 1.5rem 0;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.document-body pre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 8px 8px 0 0;
}

.document-body pre code {
    background: none;
    padding: 0;
    border: none;
    color: var(--text-primary);
    font-weight: normal;
    display: block;
    line-height: 1.6;
}

/* Code structure formatting (like file trees) */
.document-body pre code:has-text("├──"),
.document-body pre code:has-text("└──"),
.document-body code:contains("├──"),
.document-body code:contains("└──") {
    font-family: 'SF Mono', 'Monaco', monospace;
    color: var(--accent-primary);
}

/* Technical specifications formatting */
.document-body li.tech-spec {
    background: rgba(0, 180, 182, 0.05);
    padding: 0.75rem;
    margin-bottom: 0.75rem;
    border-left: 3px solid var(--accent-primary);
    border-radius: 0 6px 6px 0;
    border: 1px solid rgba(0, 180, 182, 0.1);
}

.document-body li.tech-spec::before {
    color: var(--accent-primary);
    font-size: 1em;
    content: '•';
    font-weight: bold;
}

/* Priority items styling */
.document-body li.priority-item {
    background: linear-gradient(90deg, rgba(0, 180, 182, 0.05), transparent);
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.5rem;
    border-left: 2px solid var(--accent-primary);
    font-weight: 500;
}

.document-body li.priority-item::before {
    content: '▶';
    color: var(--accent-primary);
    font-size: 0.8em;
}

/* Accessibility items styling */
.document-body li.accessibility-item {
    background: rgba(22, 163, 74, 0.05);
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.5rem;
    border-left: 2px solid var(--success);
    border-radius: 0 4px 4px 0;
}

.document-body li.accessibility-item::before {
    content: '✓';
    color: var(--success);
    font-size: 1em;
    font-weight: bold;
}

/* Technical terms with special styling */
.document-body strong.tech-term {
    color: var(--accent-primary);
    background: rgba(0, 180, 182, 0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(0, 180, 182, 0.2);
}

/* Architecture diagrams and code structure */
.document-body pre code:contains("├"),
.document-body pre code:contains("└") {
    color: var(--accent-primary);
    font-weight: 500;
}

/* File tree styling in code blocks */
.document-body pre {
    position: relative;
}

.document-body pre::after {
    content: 'CODE';
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(0, 180, 182, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.document-body strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Results Actions */
.results-actions {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .results-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .results-actions .btn {
        flex: 1;
        min-width: 140px;
        max-width: 200px;
    }
}

@media (max-width: 600px) {
    .results-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .results-actions .btn {
        width: 100%;
        max-width: none;
    }
}

/* History Button Styling */
.btn-history {
    background: linear-gradient(135deg, rgba(0, 180, 182, 0.1), rgba(0, 180, 182, 0.05));
    color: var(--accent-primary);
    border: 1px solid rgba(0, 180, 182, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-history:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 180, 182, 0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.btn-history:hover {
    background: linear-gradient(135deg, rgba(0, 180, 182, 0.15), rgba(0, 180, 182, 0.1));
    border-color: var(--accent-primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 180, 182, 0.2);
}

.btn-history:hover:before {
    transform: translateX(0);
}

/* History Modal */
.history-modal .modal {
    max-width: 90vw;
    width: 700px;
    max-height: 80vh;
}

.history-modal .modal-body {
    max-height: 60vh;
    overflow-y: auto;
}

@media (min-width: 768px) {
    .history-modal .modal {
        width: 900px;
    }
}

@media (min-width: 1200px) {
    .history-modal .modal {
        width: 1000px;
    }
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.history-item {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 1rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.history-item:hover {
    background: var(--bg-secondary);
    border-color: var(--border-medium);
}

.history-item-content {
    flex: 1;
    cursor: pointer;
}

.history-delete-btn {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 4px;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--error);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.history-delete-btn:hover {
    background: var(--error);
    color: white;
    border-color: var(--error);
}

.history-delete-btn i {
    width: 16px;
    height: 16px;
}

.history-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.history-item-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

.history-item-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.history-item-preview {
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.history-item-meta {
    font-size: 0.75rem;
    color: var(--accent-primary);
    background: rgba(0, 180, 182, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    margin-top: 0.5rem;
    display: inline-block;
}

.history-empty {
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
}

.history-empty i {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: block;
}

.history-empty p {
    margin: 0.5rem 0;
}

/* AI Notice Styling */
.ai-notice {
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid var(--warning);
    border-radius: 6px;
    padding: 0.75rem;
    margin-top: 0.5rem;
}

.ai-notice p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--warning);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.4;
}

.ai-notice i {
    color: var(--warning);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.btn-link {
    background: none;
    border: none;
    color: var(--warning);
    text-decoration: underline;
    cursor: pointer;
    font-size: inherit;
    padding: 0;
    margin: 0 0 0 0.25rem;
}

.btn-link:hover {
    color: var(--accent-primary);
}

/* Footer Styling */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    padding: 1rem;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
}

.powered-by {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-align: center;
}

.powered-by a {
    color: var(--accent-primary);
    text-decoration: none;
    margin-left: 0.25rem;
}

.powered-by a:hover {
    text-decoration: underline;
}

/* Dark Mode Styles */
[data-theme="dark"] .controls-sidebar {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

[data-theme="dark"] .document-content {
    background: var(--bg-primary);
    border-color: var(--border-light);
}

[data-theme="dark"] .document-header {
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-tertiary));
}

[data-theme="dark"] .document-body th {
    background: var(--bg-tertiary);
}

[data-theme="dark"] .document-body code {
    background: var(--bg-tertiary);
}

[data-theme="dark"] .document-body pre {
    background: var(--bg-tertiary);
    border-color: var(--border-light);
}

[data-theme="dark"] .history-item {
    background: var(--bg-tertiary);
    border-color: var(--border-medium);
}

[data-theme="dark"] .history-item:hover {
    background: var(--border-light);
}

[data-theme="dark"] .history-item-title {
    color: var(--text-primary);
}

[data-theme="dark"] .history-delete-btn {
    background: rgba(220, 38, 38, 0.15);
    border-color: rgba(220, 38, 38, 0.3);
}

[data-theme="dark"] .history-delete-btn:hover {
    background: var(--error);
    color: white;
    border-color: var(--error);
}

[data-theme="dark"] .history-empty {
    color: var(--text-secondary);
}

[data-theme="dark"] .footer {
    background: var(--bg-primary);
    border-top-color: var(--border-light);
}

[data-theme="dark"] .ai-notice {
    background: rgba(234, 179, 8, 0.15);
    border-color: var(--warning);
}

[data-theme="dark"] .ai-notice p {
    color: var(--warning);
}

[data-theme="dark"] .ai-notice i {
    color: var(--warning);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .generator-layout {
        grid-template-columns: 280px 1fr;
    }
}

@media (max-width: 968px) {
    .generator-layout {
        grid-template-columns: 1fr;
        grid-template-rows: 40vh 1fr;
        height: calc(100vh - 150px);
        gap: 0;
    }
    
    .controls-sidebar {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        max-height: 40vh;
        overflow-y: auto;
    }
    
    .results-area {
        padding: 1rem;
        overflow-y: auto;
        justify-content: flex-start;
    }
    
    .document-placeholder {
        padding: 2rem 1rem;
        min-height: 300px;
    }
    
    .placeholder-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .document-content {
        margin-bottom: 1rem;
    }
    
    .document-header {
        padding: 1.5rem;
    }
    
    .document-body {
        padding: 1.5rem;
    }
    
    .document-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .generator-layout {
        padding: 0 0.5rem;
        gap: 0.5rem;
    }
    
    .controls-sidebar {
        padding: 1rem;
    }
    
    .results-area {
        padding: 0.5rem;
    }
    
    .control-section {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .placeholder-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .document-header {
        padding: 1rem;
    }
    
    .document-title {
        font-size: 1.5rem;
    }
    
    .document-body {
        padding: 1rem;
        font-size: 14px;
    }
    
    .document-body h1 {
        font-size: 1.5rem;
        margin: 1.5rem 0 0.75rem 0;
    }
    
    .document-body h2 {
        font-size: 1.25rem;
        margin: 1.25rem 0 0.75rem 0;
    }
    
    .document-body h3 {
        font-size: 1.1rem;
        margin: 1rem 0 0.5rem 0;
    }
    
    .document-body h4 {
        font-size: 1rem;
        margin: 0.75rem 0 0.5rem 0;
    }
    
    .document-body ul,
    .document-body ol {
        padding-left: 1.5rem;
    }
    
    .document-body th,
    .document-body td {
        padding: 0.75rem 0.5rem;
        font-size: 0.875rem;
    }
    
    .document-body table {
        margin: 1rem 0;
        font-size: 0.875rem;
    }
    
    .document-body blockquote {
        padding: 0.75rem 1rem;
        margin: 1rem 0;
    }
    
    .document-body blockquote::before {
        font-size: 2rem;
        top: -0.25rem;
    }
}

/* Button States */
.btn.success {
    background: var(--success) !important;
    color: white !important;
    border-color: var(--success) !important;
}

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

/* PDF Generation Modal */
.pdf-modal .modal {
    max-width: 500px;
    width: 90%;
}

.pdf-progress {
    text-align: center;
    padding: 2rem;
}

.pdf-progress-icon {
    margin-bottom: 1.5rem;
}

.pdf-progress-icon i {
    font-size: 3rem;
    color: var(--accent-primary);
}

.spinning {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.pdf-progress h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.pdf-progress p {
    color: var(--text-secondary);
    margin: 0 0 1.5rem 0;
    font-size: 0.875rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0%;
}