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

:root {
    --primary-color: #76B900;
    --primary-hover: #659900;
    --secondary-color: #00A3E0;
    --background-dark: #000000;      /* Pure black */
    --background-light: #000000;     /* Pure black */
    --surface: #0a0a0a;              /* Very dark gray for subtle contrast */
    --surface-hover: #151515;        /* Slightly lighter for hover */
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: #2a2a2a;         /* Darker borders */
    --success-color: #4ade80;
    --error-color: #f87171;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.8);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.9);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    background: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow: hidden;
}

.container {
    display: flex;
    height: 100vh;
    width: 100vw;
}

/* Left Panel - Input Controls */
.left-panel {
    width: 40%;
    min-width: 400px;
    max-width: 600px;
    background: var(--background-light);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--surface);
}

.header h1 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.controls {
    padding: 2rem;
    flex: 1;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.input-field {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.2s;
    font-family: inherit;
}

.input-field:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(118, 185, 0, 0.1);
}

.input-field:hover {
    border-color: var(--primary-hover);
}

.textarea {
    resize: vertical;
    min-height: 100px;
}

.char-count {
    text-align: right;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Custom arrow for the Mode select */
#mode.input-field {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 2.5rem;            /* space for arrow */

    /* same style arrow as Advanced Settings */
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;  /* tweak this to align with Advanced Settings */
    background-size: 16px 16px;
}

/* Mode Info */
.mode-info {
    background: rgba(0, 163, 224, 0.1);
    border: 1px solid rgba(0, 163, 224, 0.3);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--secondary-color);
}

.select-with-arrow {
    position: relative;
}

/* hide native arrow and make room for our svg */
.select-with-arrow select {
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 2.5rem; /* space for the arrow */
}

/* position the custom arrow */
.select-with-arrow .select-arrow {
    position: absolute;
    top: 50%;
    right: 1rem; /* tweak this until it lines up with Advanced Settings */
    transform: translateY(-50%);
    pointer-events: none; /* clicks go to the select */
}


/* Beta Notice */
.beta-notice {
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #ffb347;
}

.beta-notice strong {
    color: #ffa500;
}

/* Image Upload Area */
.image-upload-area {
    position: relative;
    width: 100%;
    min-height: 250px;
    background: var(--surface);
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    overflow: hidden;
}

.image-upload-area:hover {
    border-color: var(--primary-color);
    background: var(--surface-hover);
}

.image-upload-area.has-image {
    border-style: solid;
    cursor: default;
}

.image-upload-area.has-image:hover {
    background: var(--surface);
}

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

.image-preview svg {
    margin-bottom: 1rem;
    opacity: 0.5;
}

.image-preview p {
    margin: 0.5rem 0;
}

.image-preview .hint {
    font-size: 0.85rem;
    opacity: 0.7;
}

#uploadedImagePreview {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
    border-radius: 6px;
    display: block;
}

.select-image-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    padding: 0.5rem 1.25rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
}

.select-image-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.select-image-btn.hidden {
    display: none;
}

/* Advanced Settings */
.advanced-section {
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: visible;
    z-index: 1;
}

.toggle-advanced {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--surface);
    border: none;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.toggle-advanced:hover {
    background: var(--surface-hover);
}

.toggle-advanced svg {
    transition: transform 0.3s;
}

.toggle-advanced.active svg {
    transform: rotate(180deg);
}

.advanced-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--background-light);
    padding: 0 1rem;
}

.advanced-content.open {
    max-height: 800px;
    padding: 1rem;
    overflow: visible;
}

.slider-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.slider {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: var(--surface);
    outline: none;
    -webkit-appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    transition: all 0.2s;
}

.slider::-webkit-slider-thumb:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
}

.slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.slider::-moz-range-thumb:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
}

.slider-value {
    min-width: 40px;
    text-align: right;
    font-weight: 600;
    color: var(--primary-color);
}

/* Tooltip */
.tooltip {
    position: relative;
    display: inline-block;
    cursor: help;
    margin-left: 0.25rem;
    vertical-align: middle;
    z-index: auto;
}

.tooltip svg {
    color: var(--text-secondary);
    opacity: 0.7;
    transition: all 0.2s;
    vertical-align: middle;
}

.tooltip:hover svg {
    color: var(--primary-color);
    opacity: 1;
}

.tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: var(--surface);
    color: var(--text-primary);
    text-align: center;
    border-radius: 6px;
    padding: 0.5rem;
    position: absolute;
    z-index: 9999;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.8rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* Generate Button */
.generate-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.generate-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.generate-btn:active:not(:disabled) {
    transform: translateY(0);
}

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

.spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.generate-btn.loading .spinner {
    display: block;
}

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

/* Status Messages */
.status-message {
    margin-top: 1rem;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    display: none;
}

.status-message.show {
    display: block;
}

.status-message.success {
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid var(--success-color);
    color: var(--success-color);
}

.status-message.error {
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid var(--error-color);
    color: var(--error-color);
}

.status-message.info {
    background: rgba(0, 163, 224, 0.1);
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}

/* Example Prompts */
.examples {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.examples h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.example-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.chip {
    padding: 0.5rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.chip:hover {
    background: var(--surface-hover);
    border-color: var(--primary-color);
    color: var(--text-primary);
}

/* Right Panel - 3D Viewer */
.right-panel {
    flex: 1;
    background: var(--background-dark);
    display: flex;
    flex-direction: column;
}

.viewer-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--surface);
}

.viewer-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
}

.viewer-controls {
    display: flex;
    gap: 0.5rem;
}

.icon-btn {
    width: 40px;
    height: 40px;
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.icon-btn:hover:not(:disabled) {
    background: var(--surface-hover);
    border-color: var(--primary-color);
}

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

.viewer {
    flex: 1;
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);  /* Much darker gradient */
}

.placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-secondary);
}

.placeholder svg {
    margin-bottom: 1rem;
    opacity: 0.5;
}

.placeholder p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.placeholder .hint {
    font-size: 0.9rem;
    opacity: 0.7;
}

#viewer canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

.viewer-info {
    padding: 1rem 2rem;
    background: var(--surface);
    border-top: 1px solid var(--border-color);
}

.info-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

/* Scrollbar Styling */
.left-panel::-webkit-scrollbar {
    width: 8px;
}

.left-panel::-webkit-scrollbar-track {
    background: var(--background-light);
}

.left-panel::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

.left-panel::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
    }

    .left-panel {
        width: 100%;
        max-width: none;
        height: 50vh;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }

    .right-panel {
        height: 50vh;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1.5rem 1.5rem 0.75rem;
    }

    .header h1 {
        font-size: 1.5rem;
    }

    .controls {
        padding: 1.5rem;
    }

    .left-panel {
        min-width: 100%;
    }
}

.brand-subtitle {
    font-size: 0.6em;                  /* Smaller size */
    font-weight: 600;                   /* Medium weight - stronger than before */
    display: block;                     /* Ensures it appears on its own line */
    margin-top: -0.45em;                 /* Even tighter - much closer to h1 */
    letter-spacing: 1px;                /* More elegant spacing */
    opacity: 0.85;                      /* Slight fade for subtle aesthetic */
    
    /* Override the parent h1's gradient text */
    background: none;                   /* Remove gradient */
    -webkit-background-clip: unset;     /* Reset clip */
    -webkit-text-fill-color: #ffffff;   /* White text */
    background-clip: unset;             /* Reset clip */
    color: #ffffff;                     /* White color */
}


/* ============================================
   FAQ Modal
   ============================================ */
.faq-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.faq-modal.active {
    display: flex;
}

.faq-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

.faq-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    background: var(--background-light);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* FAQ Header */
.faq-header {
    padding: 2rem 2.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(37, 37, 37, 0.8), rgba(26, 26, 26, 0.9));
}

.faq-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.faq-close {
    width: 40px;
    height: 40px;
    background: var(--surface);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.faq-close:hover {
    background: var(--surface-hover);
    border-color: var(--error-color);
    color: var(--error-color);
    transform: rotate(90deg);
}

/* FAQ Body */
.faq-body {
    padding: 2rem 2.5rem;
    overflow-y: auto;
    flex: 1;
}

.faq-body::-webkit-scrollbar {
    width: 10px;
}

.faq-body::-webkit-scrollbar-track {
    background: var(--background-light);
}

.faq-body::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 5px;
}

.faq-body::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* FAQ Items */
.faq-item {
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    background: var(--surface);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: rgba(118, 185, 0, 0.3);
    background: var(--surface-hover);
    box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.3);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s;
    line-height: 1.5;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question span {
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question:hover .faq-icon {
    color: var(--primary-color);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
    color: var(--primary-color);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer > div {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.faq-answer p {
    margin: 0 0 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul, .faq-answer ol {
    margin: 0.75rem 0 1rem 1.5rem;
    padding: 0;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.faq-answer strong {
    color: #ffffff;
    font-weight: 600;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
}

.faq-answer a:hover {
    border-bottom-color: var(--primary-color);
    color: var(--primary-hover);
}

.faq-answer em {
    color: var(--text-secondary);
    opacity: 0.8;
    font-style: italic;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 1200px;
}

/* FAQ Footer */
.faq-footer {
    padding: 1.75rem 2.5rem;
    border-top: 1px solid var(--border-color);
    background: var(--surface);
    text-align: center;
}

.faq-footer p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.faq-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    border-bottom: 1px solid transparent;
}

.faq-footer a:hover {
    color: var(--primary-hover);
    border-bottom-color: var(--primary-hover);
}

/* ============================================
   Responsive FAQ
   ============================================ */
@media (max-width: 768px) {
    .faq-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 12px;
    }
    
    .faq-header {
        padding: 1.5rem 1.25rem;
    }
    
    .faq-header h2 {
        font-size: 1.5rem;
    }
    
    .faq-body {
        padding: 1.5rem 1.25rem;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .faq-answer > div {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .faq-footer {
        padding: 1.5rem 1.25rem;
    }
}

/* Remove old FAQ button styles if they exist */
.faq-btn {
    display: none;
}

/* ============================================
   Disclaimers Section (Footer)
   ============================================ */
.disclaimers-section {
    width: 100%;
    background: #1a1a1a;
    border-top: 1px solid var(--border-color);
    padding: 2rem 2.5rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #9ca3af;
}

.disclaimer-block {
    margin-bottom: 1.25rem;
    display: block;
}

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

.disclaimer-title {
    color: #d1d5db;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    font-size: 0.8125rem;
}

.disclaimer-text {
    color: #9ca3af;
    display: inline;
    margin-left: 0.375rem;
}

.disclaimer-text a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.2s;
}

.disclaimer-text a:hover {
    color: var(--primary-hover);
}

.disclaimer-text strong {
    color: #d1d5db;
    font-weight: 700;
    margin-left: 0.5rem;
}

/* Responsive Disclaimers */
@media (max-width: 768px) {
    .disclaimers-section {
        padding: 1.5rem 1.25rem;
        font-size: 0.8125rem;
    }
    
    .disclaimer-block {
        margin-bottom: 1rem;
    }
    
    .disclaimer-title {
        display: block;
        margin-bottom: 0.25rem;
    }
    
    .disclaimer-text {
        display: block;
        margin-left: 0;
    }
}

/* Compact AI Disclaimer */
.ai-disclaimer {
    margin-top: 1rem;
    padding: 0.875rem 1rem;
    background: transparent;  /* Removed blue background */
    border: none;             /* Removed border */
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    animation: fadeIn 0.3s ease;
}

.ai-disclaimer svg {
    flex-shrink: 0;
    color: var(--text-secondary);  /* Same color as text */
    opacity: 0.9;
    margin-top: 0.125rem;
}

.ai-disclaimer p {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--text-secondary);
    opacity: 0.9;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .ai-disclaimer {
        padding: 0.75rem 0.875rem;
        gap: 0.625rem;
    }
    
    .ai-disclaimer svg {
        width: 14px;
        height: 14px;
    }
    
    .ai-disclaimer p {
        font-size: 0.75rem;
    }
}