/* ================================================================
   AI Faculty — Standalone Chatbot Styles
   Dark theme with glassmorphism — chat-only layout.
   ================================================================ */

/* ─── CSS Variables ──────────────────────────────────────────── */
:root {
    --bg: #0a0a1a;
    --bg-card: #111128;
    --bg-sidebar: #0d0d22;
    --bg-input: #16162e;
    --bg-hover: #1a1a3a;
    --border: #1e1e3e;
    --accent: #6366f1;
    --accent-hover: #818cf8;
    --cyan: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --text: #e2e8f0;
    --text-dim: #94a3b8;
    --text-hint: #475569;
    --radius: 10px;
    --assets-w: 300px;
}

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

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* ─── Header ─────────────────────────────────────────────────── */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-brand .brand-icon {
    font-size: 24px;
}

.header-brand h1 {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--cyan));
    background-clip: text;
    /* Standard property for compatibility */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.beta-tag {
    font-size: 8px;
    font-weight: 700;
    background: var(--accent);
    color: #fff;
    -webkit-text-fill-color: #fff;
    /* Override the h1 gradient text fill */
    padding: 1px 4px;
    border-radius: 3px;
    vertical-align: super;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 2px;
    margin-top: -4px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.course-badge {
    font-size: 12px;
    color: var(--accent-hover);
    background: rgba(99, 102, 241, 0.12);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.course-badge.not-configured {
    color: var(--warning);
    background: rgba(245, 158, 11, 0.12);
}

/* Token Monitor */
.token-monitor {
    display: flex;
    gap: 12px;
}

.token-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.token-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-hint);
}

.token-value {
    font-size: 14px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--text-dim);
}

.token-stat.total .token-value {
    color: var(--accent-hover);
}

.btn-settings {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-dim);
    padding: 6px 12px;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.btn-settings:hover {
    background: var(--bg-hover);
    color: var(--text);
    border-color: var(--accent);
}

.btn-new-session {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-dim);
    padding: 6px 12px;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s;
}

.btn-new-session:hover {
    background: var(--bg-hover);
    color: var(--text);
    border-color: var(--accent);
}

/* ─── Chat Layout ────────────────────────────────────────────── */
.chat-layout {
    flex: 1;
    display: flex;
    overflow: hidden;
}

.chat-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* ─── Chat Messages ──────────────────────────────────────────── */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.welcome-msg {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-dim);
}

.welcome-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.welcome-msg h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.welcome-msg p {
    font-size: 14px;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

.chat-message {
    max-width: 85%;
    padding: 14px 18px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.65;
    word-wrap: break-word;
}

.chat-message.user {
    align-self: flex-end;
    background: var(--accent);
    color: #fff;
    border-bottom-right-radius: 4px;
}

.chat-message.assistant {
    align-self: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-bottom-left-radius: 4px;
    max-width: 90%;
}

/* Markdown styles in assistant messages */
.chat-message.assistant h1,
.chat-message.assistant h2,
.chat-message.assistant h3 {
    margin: 14px 0 8px;
    font-weight: 700;
}

.chat-message.assistant h1 {
    font-size: 18px;
}

.chat-message.assistant h2 {
    font-size: 16px;
}

.chat-message.assistant h3 {
    font-size: 14px;
}

.chat-message.assistant p {
    margin: 6px 0;
}

.chat-message.assistant ul,
.chat-message.assistant ol {
    padding-left: 20px;
    margin: 6px 0;
}

.chat-message.assistant table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
    font-size: 13px;
}

.chat-message.assistant th,
.chat-message.assistant td {
    border: 1px solid var(--border);
    padding: 6px 10px;
    text-align: left;
}

.chat-message.assistant th {
    background: var(--bg-hover);
}

.chat-message.assistant code {
    background: var(--bg-input);
    padding: 2px 5px;
    border-radius: 4px;
    font-size: 12px;
}

.chat-message.assistant pre {
    background: var(--bg-input);
    padding: 12px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 8px 0;
}

.chat-message.assistant pre code {
    background: transparent;
    padding: 0;
}

.chat-message.assistant blockquote {
    border-left: 3px solid var(--accent);
    padding: 4px 12px;
    margin: 8px 0;
    color: var(--text-dim);
}

.chat-message.assistant strong {
    color: var(--accent-hover);
}

/* Citations */
.citations-section {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-dim);
}

.citation-item {
    display: inline-block;
    background: var(--bg-input);
    padding: 2px 8px;
    border-radius: 6px;
    margin: 2px 4px 2px 0;
    font-size: 11px;
}

/* Loading */
.chat-message.loading {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dim);
    font-size: 13px;
}

.loading-dots {
    display: flex;
    gap: 4px;
}

.loading-dots span {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: dot-bounce 1.2s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) {
    animation-delay: 0s;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.16s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.32s;
}

@keyframes dot-bounce {

    0%,
    80%,
    100% {
        transform: scale(0.6);
        opacity: 0.4;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.loading-cursor {
    cursor: wait;
}

/* ─── Chat Input ─────────────────────────────────────────────── */
.chat-input-bar {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    padding: 14px 20px;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
}

.chat-input-bar textarea {
    flex: 1;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px 14px;
    color: var(--text);
    font-size: 14px;
    font-family: inherit;
    resize: none;
    outline: none;
    transition: border-color 0.2s;
    min-height: 42px;
    max-height: 120px;
}

.chat-input-bar textarea:focus {
    border-color: var(--accent);
}

.chat-input-bar textarea::placeholder {
    color: var(--text-hint);
}

.btn-send {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    width: 42px;
    height: 42px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-send:hover {
    background: var(--accent-hover);
}

.btn-send:disabled {
    opacity: 0.3;
}

/* ─── Mic Button (Voice Input) ───────────────────────────────── */
.btn-mic {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-dim);
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 18px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-mic:hover {
    border-color: var(--accent);
    color: var(--text);
}

.btn-mic.listening {
    background: rgba(239, 68, 68, 0.15);
    border-color: var(--error);
    color: var(--error);
    animation: mic-pulse 1.5s infinite;
}

@keyframes mic-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.3);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
    }
}

/* ─── TTS Button (Voice Output) ──────────────────────────────── */
.tts-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
    padding: 5px 12px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-dim);
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s;
}

.tts-btn:hover {
    border-color: var(--accent);
    color: var(--text);
}

.tts-btn.playing {
    background: rgba(99, 102, 241, 0.15);
    border-color: var(--accent);
    color: var(--accent-hover);
}

/* ─── 3D Model Loading Overlay ───────────────────────────────── */
.model-loading-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    transition: opacity 0.6s ease;
}

.model-loading-content {
    text-align: center;
    padding: 32px 24px;
    max-width: 340px;
}

.model-loading-spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto 20px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.model-loading-msg {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 20px;
    animation: msg-fade 3s ease-in-out infinite;
}

.model-loading-quote {
    font-size: 12px;
    color: var(--text-hint);
    font-style: italic;
    line-height: 1.6;
    animation: msg-fade 3s ease-in-out infinite;
    animation-delay: 1.5s;
    opacity: 0.6;
}

.model-loading-quote .quote-author {
    font-style: normal;
    font-weight: 600;
    color: var(--accent);
}

@keyframes msg-fade {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

/* ─── 3D Model Pan Controls ──────────────────────────────────── */
.model-pan-controls {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 15;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.model-pan-controls:hover {
    opacity: 1;
}

.pan-row {
    display: flex;
    gap: 2px;
}

.pan-btn {
    width: 32px;
    height: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-dim);
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
}

.pan-btn:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.pan-btn:active {
    transform: scale(0.9);
}

/* ─── Media Panel ────────────────────────────────────────────── */
.media-panel {
    width: 340px;
    min-width: 200px;
    max-width: 70vw;
    display: flex;
    flex-direction: column;
    background: var(--bg-sidebar);
    border-left: 1px solid var(--border);
    position: relative;
}

/* ─── Resize Handle ──────────────────────────────────────────── */
.resize-handle {
    width: 5px;
    cursor: col-resize;
    background: transparent;
    transition: background 0.2s;
    flex-shrink: 0;
    position: relative;
    z-index: 5;
}

.resize-handle:hover,
.resize-handle.active {
    background: var(--accent);
}

.resize-handle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3px;
    height: 32px;
    border-radius: 2px;
    background: var(--border);
    opacity: 0;
    transition: opacity 0.2s;
}

.resize-handle:hover::after,
.resize-handle.active::after {
    opacity: 1;
    background: #fff;
}

.media-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
}

.media-header h3 {
    font-size: 14px;
    font-weight: 600;
}

.asset-count {
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    min-width: 22px;
    text-align: center;
}

.media-list {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 0;
}

.media-empty {
    text-align: center;
    color: var(--text-hint);
    font-size: 13px;
    padding: 40px 0;
}

.media-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.media-card:hover {
    border-color: var(--accent);
    transform: translateY(-1px);
}

.media-card .media-thumb {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 8px;
    background: rgba(0, 0, 0, 0.2);
}

.media-card .media-label {
    font-size: 12px;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 6px;
}

.media-card .media-type {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    flex-shrink: 0;
}

.media-type.figure {
    background: rgba(99, 102, 241, 0.15);
    color: var(--accent-hover);
}

.media-type.model3d {
    background: rgba(6, 182, 212, 0.15);
    color: var(--cyan);
}

/* ─── Inline Media Viewer ────────────────────────────────────── */
.media-viewer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 340px;
    min-width: 250px;
    max-width: 80vw;
    background: var(--bg);
    border-left: 1px solid var(--border);
    z-index: 100;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
}

.viewer-resize-handle {
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    cursor: col-resize;
    background: transparent;
    transition: background 0.2s;
    z-index: 12;
}

.viewer-resize-handle:hover,
.viewer-resize-handle.active {
    background: var(--accent);
}

.viewer-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    z-index: 11;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.viewer-close:hover {
    background: var(--error);
    border-color: transparent;
}

.viewer-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow: hidden;
    position: relative;
}

.viewer-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.viewer-content model-viewer {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 8px;
    --poster-color: transparent;
}

/* ─── Settings Panel ─────────────────────────────────────────── */
.settings-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 380px;
    max-width: 90vw;
    z-index: 300;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
    animation: slide-in 0.2s ease-out;
}

.settings-panel.hidden {
    display: none;
}

@keyframes slide-in {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.settings-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.settings-header h3 {
    font-size: 16px;
    font-weight: 600;
}

.settings-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.setting-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dim);
    margin-bottom: 6px;
}

.setting-group input {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px 12px;
    color: var(--text);
    font-size: 13px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.setting-group input:focus {
    border-color: var(--accent);
}

.setting-group input::placeholder {
    color: var(--text-hint);
}

.btn-save {
    margin-top: 8px;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-save:hover {
    background: var(--accent-hover);
}

/* ─── Toast Notifications ────────────────────────────────────── */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toast {
    background: var(--bg-card);
    color: var(--text);
    border: 1px solid var(--border);
    padding: 10px 18px;
    border-radius: var(--radius);
    font-size: 13px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    animation: toast-in 0.3s ease-out;
}

.toast.success {
    border-left: 3px solid var(--success);
}

.toast.warning {
    border-left: 3px solid var(--warning);
}

.toast.error {
    border-left: 3px solid var(--error);
}

.toast.info {
    border-left: 3px solid var(--accent);
}

@keyframes toast-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-hint);
}

/* ─── KaTeX overrides ────────────────────────────────────────── */
.katex-display {
    margin: 8px 0;
    overflow-x: auto;
    overflow-y: hidden;
}

.katex {
    font-size: 1em;
}

/* ─── Mobile Assets Toggle (desktop hidden) ──────────────────── */
.btn-assets-toggle {
    display: none;
    align-items: center;
    gap: 4px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-dim);
    padding: 6px 10px;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
}

.btn-assets-toggle:hover {
    background: var(--bg-hover);
    color: var(--text);
    border-color: var(--accent);
}

.btn-assets-toggle .asset-badge {
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 8px;
    min-width: 18px;
    text-align: center;
}

/* ─── Mobile Panel Close Button ──────────────────────────────── */
.mobile-panel-close {
    display: none;
}

/* ─── Responsive — Tablet (≤ 768px) ──────────────────────────── */
@media (max-width: 768px) {

    /* Header: single row, compact */
    .header {
        gap: 8px;
        padding: 8px 12px;
    }

    .header-brand h1 {
        font-size: 15px;
    }

    .header-right {
        gap: 6px;
    }

    /* Hide token monitor on mobile — developer metric */
    .token-monitor {
        display: none;
    }

    /* Hide course badge — available in settings */
    .course-badge {
        display: none;
    }

    /* Hide button labels — icon-only on mobile */
    .btn-label {
        display: none;
    }

    /* Compact buttons */
    .btn-settings,
    .btn-new-session {
        padding: 6px 8px;
        font-size: 14px;
    }

    /* Show assets toggle button */
    .btn-assets-toggle {
        display: inline-flex;
        font-size: 12px;
        padding: 5px 8px;
    }

    /* Hide media panel by default on mobile */
    .media-panel {
        display: none;
    }

    /* Media panel as full-screen overlay when toggled open */
    .media-panel.mobile-open {
        display: flex;
        position: fixed;
        inset: 0;
        z-index: 200;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0;
        border-left: none;
        background: var(--bg);
    }

    .media-panel.mobile-open .mobile-panel-close {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
        background: var(--bg-card);
        border: 1px solid var(--border);
        color: var(--text);
        border-radius: 50%;
        cursor: pointer;
        font-size: 16px;
        z-index: 10;
        transition: all 0.2s;
    }

    .media-panel.mobile-open .mobile-panel-close:hover {
        background: var(--error);
        border-color: transparent;
    }

    /* Hide resize handle — not needed on touch */
    .resize-handle {
        display: none;
    }

    /* Wider chat messages + adjusted font */
    .chat-message {
        max-width: 95%;
        font-size: 13px;
    }

    .chat-message.assistant {
        max-width: 95%;
    }

    /* Media viewer full-screen on mobile */
    .media-viewer {
        width: 100% !important;
        max-width: 100vw;
    }

    .viewer-resize-handle {
        display: none;
    }
}

/* ─── Responsive — Phone (≤ 480px) ───────────────────────────── */
@media (max-width: 480px) {

    .header-brand .brand-icon {
        font-size: 20px;
    }

    .header-brand h1 {
        font-size: 14px;
    }

    .chat-messages {
        padding: 10px;
    }

    .chat-input-bar {
        padding: 8px 10px;
    }

    .welcome-msg {
        padding: 32px 12px;
    }

    .welcome-msg h3 {
        font-size: 16px;
    }

    .welcome-msg p {
        font-size: 12px;
    }

    .settings-panel {
        width: 100%;
        max-width: 100vw;
    }

    .chat-message {
        font-size: 12px;
        padding: 10px 14px;
    }
}