/* Admin Panel Premium Design System */




:root {
    --primary: #00e5ff;
    --primary-hover: #00b8d4;
    --bg-dark: #0f172a;
    --card-bg: rgba(30, 41, 59, 0.7);
    --border-color: rgba(255, 255, 255, 0.08);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --success: #10b981;
    --danger: #ef4444;
}

body {
    background: radial-gradient(circle at top right, #1e1b4b, #0f172a 60%);
    color: var(--text-main);
    font-family: 'Outfit', 'Inter', -apple-system, sans-serif;
    margin: 0;
    min-height: 100vh;
}

/* Glassmorphism Auth Screen */
.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

.auth-card {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 229, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.auth-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6), 0 0 50px rgba(0, 229, 255, 0.1);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h1 {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 10px;
    background: linear-gradient(to right, #00e5ff, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 25px;
}

.auth-tab-btn {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 10px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.auth-tab-btn.active {
    background: var(--primary);
    color: #000;
}

/* Dashboard Layout */
.dashboard-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.dash-header {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.brand-section h2 {
    font-size: 20px;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(to right, #00e5ff, #a855f7);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.company-badge {
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.3);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

.logout-btn {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.logout-btn:hover {
    background: var(--danger);
    color: #fff;
}

/* Main Layout Grid */
.dash-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    flex: 1;
    min-height: 0;
}

/* Sidebar styling */
.sidebar {
    background: rgba(15, 23, 42, 0.4);
    border-right: 1px solid var(--border-color);
    padding: 25px 20px;
    overflow-y: auto;
}

.sidebar h3 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin: 0 0 20px;
}

.company-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.company-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.company-item.active {
    background: rgba(0, 229, 255, 0.06);
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.05);
}

.company-item .faq-count {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 600;
}

.company-item.active .faq-count {
    background: var(--primary);
    color: #000;
}

/* Workspace container */
.workspace {
    padding: 40px;
    overflow-y: auto;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* Document upload card */
.upload-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.upload-card h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px;
}

.upload-card p {
    color: var(--text-muted);
    margin: 0 0 20px;
    font-size: 14px;
}

.dropzone {
    border: 2px dashed rgba(0, 229, 255, 0.3);
    background: rgba(0, 229, 255, 0.02);
    border-radius: 16px;
    padding: 35px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.dropzone:hover {
    border-color: var(--primary);
    background: rgba(0, 229, 255, 0.05);
}

.dropzone-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 5px;
}

.admin-inline-icon {
    width: 40px;
    height: 40px;
    fill: currentColor;
}

.dropzone-text {
    font-size: 15px;
    font-weight: 600;
}

.dropzone-subtext {
    font-size: 12px;
    color: var(--text-muted);
}

/* Loader / Processing state */
.ai-loader {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 229, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
}

.ai-loader-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
    animation: pulse 1.5s ease-in-out infinite;
}

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

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* Forms styling */
.faq-form {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-form h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 25px;
    border-left: 4px solid var(--primary);
    padding-left: 12px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.5);
    color: #fff;
    font-size: 14px;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.1);
    outline: none;
}

.attachments-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.attachments-section label {
    font-size: 14px;
    font-weight: 600;
    color: #e2e8f0;
    display: block;
    margin-bottom: 12px;
}

.attachment-input {
    margin-bottom: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.attachment-input input[type="file"] {
    flex: 1;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
}

.attachment-input input[type="text"] {
    flex: 1.5;
}

.attachment-input button {
    padding: 10px 14px;
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.attachment-input button:hover {
    background: var(--danger);
    color: #fff;
}

.add-attachment {
    background: rgba(0, 229, 255, 0.08);
    color: var(--primary);
    border: 1px solid rgba(0, 229, 255, 0.2);
    padding: 10px 18px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.2s ease;
}

.add-attachment:hover {
    background: var(--primary);
    color: #000;
}

.submit-btn {
    background: var(--primary);
    color: #0f172a;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    width: 100%;
    transition: all 0.2s ease;
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.15);
}

.submit-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 4px 25px rgba(0, 229, 255, 0.3);
    transform: translateY(-1px);
}

.chat-history-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.analytics-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 22px;
}

.analytics-metric {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 14px;
    background: rgba(15, 23, 42, 0.35);
}

.analytics-metric span {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.analytics-metric strong {
    color: #f8fafc;
    font-size: 26px;
    line-height: 1;
}

.analytics-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.analytics-columns h3 {
    color: #f8fafc;
    font-size: 15px;
    margin: 0 0 10px;
}

.analytics-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.analytics-list-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px;
    background: rgba(15, 23, 42, 0.35);
    color: #e2e8f0;
    font-size: 13px;
}

.analytics-list-item strong {
    color: var(--primary);
    flex-shrink: 0;
}

.analytics-list-item small {
    color: var(--text-muted);
    flex-shrink: 0;
}

.analytics-failed-query {
    flex-direction: column;
}

@media (max-width: 900px) {
    .analytics-grid,
    .analytics-columns {
        grid-template-columns: 1fr;
    }
}

.history-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.history-header h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 6px;
    border-left: 4px solid var(--primary);
    padding-left: 12px;
}

.history-header p {
    color: var(--text-muted);
    margin: 0;
    font-size: 13px;
}

.history-refresh-btn {
    background: rgba(0, 229, 255, 0.08);
    color: var(--primary);
    border: 1px solid rgba(0, 229, 255, 0.2);
    padding: 9px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}

.history-refresh-btn:hover {
    background: var(--primary);
    color: #0f172a;
}

.history-empty {
    color: var(--text-muted);
    text-align: center;
    padding: 26px 10px;
    border: 1px dashed var(--border-color);
    border-radius: 12px;
    font-size: 14px;
}

.chat-history-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.chat-history-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    background: rgba(15, 23, 42, 0.35);
}

.history-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--text-muted);
    font-size: 12px;
    margin-bottom: 10px;
}

.history-status {
    border-radius: 999px;
    padding: 2px 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 0.04em;
}

.history-status.matched {
    background: rgba(16, 185, 129, 0.12);
    color: var(--success);
}

.history-status.unmatched {
    background: rgba(239, 68, 68, 0.12);
    color: #f87171;
}

.history-question,
.history-answer {
    line-height: 1.5;
    font-size: 14px;
}

.history-question {
    color: #f8fafc;
    font-weight: 700;
    margin-bottom: 8px;
}

.history-answer {
    color: #cbd5e1;
}

.history-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 12px;
}

.history-sources {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.history-source {
    color: var(--primary);
    background: rgba(0, 229, 255, 0.06);
    border: 1px solid rgba(0, 229, 255, 0.16);
    border-radius: 6px;
    padding: 3px 8px;
    font-size: 11px;
    max-width: 100%;
}

/* FAQ List styles */
.faq-list {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-list h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    border-left: 4px solid var(--primary);
    padding-left: 12px;
}

.faq-list-header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 25px;
}

.clear-database-btn {
    background: rgba(239, 68, 68, 0.08);
    color: var(--danger);
    border: 1px solid rgba(239, 68, 68, 0.28);
    padding: 9px 14px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.clear-database-btn:hover:not(:disabled) {
    background: var(--danger);
    color: #fff;
}

.clear-database-btn:disabled {
    cursor: not-allowed;
    opacity: 0.65;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    transition: all 0.2s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-weight: 700;
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 8px;
}

.faq-answer {
    color: #cbd5e1;
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 14px;
}

.faq-keywords {
    color: var(--text-muted);
    font-size: 12px;
    margin-bottom: 12px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.keyword-tag {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    padding: 2px 8px;
    border-radius: 6px;
}

.faq-attachments {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 15px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.attachment-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.attachment-link:hover {
    text-decoration: underline;
}

.faq-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.edit-btn {
    background: rgba(0, 229, 255, 0.08);
    color: var(--primary);
    border: 1px solid rgba(0, 229, 255, 0.2);
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.edit-btn:hover {
    background: var(--primary);
    color: #000;
}

.delete-btn {
    background: rgba(239, 68, 68, 0.08);
    color: var(--danger);
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.delete-btn:hover {
    background: var(--danger);
    color: #fff;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.modal-content {
    background: #0f172a;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 20px;
    color: var(--text-muted);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close-modal:hover {
    color: #fff;
}

.cancel-btn {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    border: 1px solid var(--border-color);
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}

.cancel-btn:hover {
    background: rgba(255, 255, 255, 0.08);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.back-link:hover {
    color: var(--primary-hover);
    transform: translateX(-2px);
}

/* Responsive design adjustments */
@media (max-width: 900px) {
    .dash-content {
        grid-template-columns: 1fr;
    }

    .sidebar {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        max-height: 250px;
    }

    .workspace {
        padding: 25px;
    }
}

@media (max-width: 600px) {
    .auth-card {
        padding: 25px;
    }

    .dash-header {
        padding: 15px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .user-profile {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .company-badge,
    .logout-btn {
        width: 100%;
        text-align: center;
    }

    .attachment-input {
        flex-direction: column;
        align-items: stretch;
    }

    .attachment-input button {
        width: 100%;
    }
}

/* Settings Card - Chatbot Routing Configuration */
.settings-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.settings-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.settings-title-group h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px;
    border-left: 4px solid var(--primary);
    padding-left: 12px;
}

.settings-title-group p {
    color: var(--text-muted);
    margin: 0;
    font-size: 13px;
}

.settings-badge {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--success);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.15);
    transition: all 0.3s ease;
}

.routing-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .routing-options {
        grid-template-columns: 1fr;
    }
}

.routing-option-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    user-select: none;
}

.routing-option-card:hover {
    border-color: rgba(0, 229, 255, 0.3);
    background: rgba(15, 23, 42, 0.6);
    transform: translateY(-2px);
}

.routing-option-card input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--text-muted);
    border-radius: 50%;
    margin: 3px 0 0 0;
    outline: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.routing-option-card input[type="radio"]:checked {
    border-color: var(--primary);
    background: transparent;
}

.routing-option-card input[type="radio"]::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    transform: scale(0);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.routing-option-card input[type="radio"]:checked::before {
    transform: scale(1);
    box-shadow: 0 0 10px var(--primary);
}

.routing-option-card.active-card {
    border-color: var(--primary);
    background: rgba(0, 229, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.06);
}

.routing-option-info {
    flex: 1;
}

.routing-option-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.routing-option-header .icon {
    font-size: 18px;
}

.routing-option-header h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.routing-option-info p {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.settings-notification {
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.2);
    color: var(--primary);
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    animation: fadeIn 0.3s ease;
}

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

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