/* Import Modern Typography (Inter & Outfit) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* CSS CSS Variables for Light Mode (Default) & Dark Mode Toggles */
:root {
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-heading: 'Outfit', sans-serif;

    /* Theme-specific Colors (Light Mode) */
    --bg-main: #f8fafc;
    --bg-card: #ffffff;
    --bg-header: #ffffff;
    --bg-code: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --border-focus: #3b82f6;

    /* Brand Accent Colors */
    --brand-primary: #0284c7;      /* Clear Culligan Blue */
    --brand-primary-hover: #0369a1;
    --brand-secondary: #0f172a;    /* Deep slate corporate */
    --brand-secondary-hover: #1e293b;
    --accent-light: #e0f2fe;

    /* Status Indicators (Traffic Lights) */
    --status-secure-bg: #e8f5e9;
    --status-secure-text: #2e7d32;
    --status-secure-border: #a5d6a7;

    --status-warning-bg: #fff3e0;
    --status-warning-text: #ef6c00;
    --status-warning-border: #ffcc80;

    --status-critical-bg: #ffebee;
    --status-critical-text: #c62828;
    --status-critical-border: #ef9a9a;

    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px 0 rgba(0, 0, 0, 0.03);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);

    --border-radius-sm: 6px;
    --border-radius-md: 10px;
    --border-radius-lg: 16px;

    --transition-speed: 0.25s;
}

/* Dark Theme Variables */
body.dark-theme {
    --bg-main: #0b0f19;
    --bg-card: #131a26;
    --bg-header: #131a26;
    --bg-code: #1e293b;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: #243242;
    --border-focus: #3b82f6;

    --brand-primary: #38bdf8;
    --brand-primary-hover: #7dd3fc;
    --brand-secondary: #cbd5e1;
    --brand-secondary-hover: #ffffff;
    --accent-light: #162a45;

    --status-secure-bg: rgba(46, 125, 50, 0.15);
    --status-secure-text: #4caf50;
    --status-secure-border: rgba(76, 175, 80, 0.3);

    --status-warning-bg: rgba(239, 108, 0, 0.15);
    --status-warning-text: #ff9800;
    --status-warning-border: rgba(255, 152, 0, 0.3);

    --status-critical-bg: rgba(198, 40, 40, 0.15);
    --status-critical-text: #f44336;
    --status-critical-border: rgba(244, 67, 54, 0.3);

    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 15px;
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

/* Layout Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
}

a {
    color: var(--brand-primary);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--brand-primary-hover);
    text-decoration: underline;
}

code {
    font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace;
    background-color: var(--bg-code);
    padding: 0.2em 0.4em;
    border-radius: 4px;
    font-size: 85%;
    border: 1px solid var(--border-color);
}

/* Header Component */
.site-header {
    background-color: var(--bg-header);
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    transition: background-color var(--transition-speed), border-color var(--transition-speed);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo {
    width: 36px;
    height: 36px;
    color: var(--brand-primary);
}

.brand-title {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Theme Toggle Switch */
.theme-toggle-btn {
    background: none;
    border: 1px solid var(--border-color);
    padding: 0.5rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed);
}

.theme-toggle-btn:hover {
    background-color: var(--bg-code);
    color: var(--text-primary);
}

.theme-toggle-btn svg {
    width: 20px;
    height: 20px;
}

.theme-toggle-btn .sun-icon {
    display: none;
}

body.dark-theme .theme-toggle-btn .moon-icon {
    display: none;
}

body.dark-theme .theme-toggle-btn .sun-icon {
    display: block;
}

/* Meta / Compliance Banner */
.compliance-hero {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

@media (max-width: 900px) {
    .compliance-hero {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.75rem;
    }
}

.hero-main h1 {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.hero-main p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 760px;
}

.hero-meta-card {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 0.5rem;
}

.meta-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.meta-label {
    color: var(--text-muted);
    font-weight: 500;
}

.meta-value {
    color: var(--text-primary);
    font-weight: 600;
}

/* Security Disclosure Box */
.disclosure-section {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--brand-primary);
    border-radius: var(--border-radius-md);
    padding: 1.75rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.disclosure-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.disclosure-title svg {
    width: 20px;
    height: 20px;
    color: var(--brand-primary);
}

.disclosure-text {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    max-width: 1000px;
}

.disclosure-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.contact-badge {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.contact-badge svg {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
}

.contact-email {
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.contact-email:hover {
    color: var(--brand-primary);
    text-decoration: underline;
}

.btn-secondary-outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-speed);
}

.btn-secondary-outline:hover {
    background-color: var(--bg-code);
    border-color: var(--text-muted);
}

/* Collapsible PGP Panel */
.pgp-panel {
    display: none;
    margin-top: 1rem;
    background-color: var(--bg-code);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 1rem;
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--text-secondary);
    white-space: pre-wrap;
    position: relative;
}

.pgp-panel.visible {
    display: block;
    animation: slideDown 0.3s ease-out;
}

.pgp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.pgp-copy-btn {
    background: none;
    border: none;
    color: var(--brand-primary);
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.pgp-copy-btn:hover {
    color: var(--brand-primary-hover);
    text-decoration: underline;
}

/* Sections for Electronic Platforms */
.section-title-wrapper {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 0.25rem;
}

.platform-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.platform-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

/* Firmware Tables */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    margin: 1.5rem 0;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
}

.table-custom {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.table-custom th, .table-custom td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.table-custom th {
    background-color: var(--bg-main);
    color: var(--text-secondary);
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.table-custom tr:last-child td {
    border-bottom: none;
}

/* Badge Status Styles */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.6rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    border: 1px solid transparent;
}

.badge svg {
    width: 12px;
    height: 12px;
}

.badge.badge-secure {
    background-color: var(--status-secure-bg);
    color: var(--status-secure-text);
    border-color: var(--status-secure-border);
}

.badge.badge-warning {
    background-color: var(--status-warning-bg);
    color: var(--status-warning-text);
    border-color: var(--status-warning-border);
}

.badge.badge-critical {
    background-color: var(--status-critical-bg);
    color: var(--status-critical-text);
    border-color: var(--status-critical-border);
}

/* Action Section buttons */
.platform-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.btn-primary {
    background-color: var(--brand-primary);
    border: 1px solid var(--brand-primary);
    color: #ffffff !important;
    padding: 0.65rem 1.25rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-sans);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-speed);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--brand-primary-hover);
    border-color: var(--brand-primary-hover);
    text-decoration: none;
}

.btn-secondary {
    background-color: var(--brand-secondary);
    border: 1px solid var(--brand-secondary);
    color: var(--bg-main) !important;
    padding: 0.65rem 1.25rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-sans);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-speed);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: var(--brand-secondary-hover);
    border-color: var(--brand-secondary-hover);
    text-decoration: none;
}

body.dark-theme .btn-secondary {
    color: #0f172a !important;
}

/* Associated SKU Layout */
.sku-section {
    margin-top: 2rem;
}

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

.sku-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.sku-search-wrapper {
    position: relative;
    width: 260px;
}

.sku-search-input {
    width: 100%;
    padding: 0.4rem 0.75rem 0.4rem 2rem;
    font-size: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-sans);
    transition: all var(--transition-speed);
}

.sku-search-input:focus {
    outline: none;
    border-color: var(--border-focus);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.15);
}

.sku-search-icon {
    position: absolute;
    left: 0.65rem;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    color: var(--text-muted);
    pointer-events: none;
}

.sku-grid-box {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 1.25rem;
    max-height: 250px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.6rem;
}

.sku-pill {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 0.4rem 0.6rem;
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-speed);
}

.sku-pill:hover {
    border-color: var(--text-muted);
    color: var(--text-primary);
}

.sku-copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    opacity: 0;
    transition: opacity var(--transition-speed), color var(--transition-speed);
    display: flex;
    align-items: center;
}

.sku-pill:hover .sku-copy-btn {
    opacity: 1;
}

.sku-copy-btn:hover {
    color: var(--brand-primary);
}

.sku-copy-btn svg {
    width: 12px;
    height: 12px;
}

.sku-not-found {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 1.5rem 0;
    display: none;
}

/* Vulnerability & CVE Log Section */
.cve-section {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.cve-info-banner {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background-color: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--border-radius-md);
    padding: 1rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

body.dark-theme .cve-info-banner {
    background-color: rgba(56, 189, 248, 0.05);
    border-color: rgba(56, 189, 248, 0.15);
}

.cve-info-banner svg {
    width: 18px;
    height: 18px;
    color: var(--brand-primary);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.table-empty-row {
    text-align: center;
    font-style: italic;
    color: var(--text-muted);
    padding: 2rem !important;
}

/* Custom Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

body.dark-theme .modal-overlay {
    background-color: rgba(0, 0, 0, 0.75);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 580px;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

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

.modal-title {
    font-size: 1.15rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-title svg {
    width: 20px;
    height: 20px;
}

.modal-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    border-radius: 50%;
    transition: all var(--transition-speed);
}

.modal-close-btn:hover {
    background-color: var(--bg-code);
    color: var(--text-primary);
}

.modal-body {
    padding: 1.5rem;
    max-height: 70vh;
    overflow-y: auto;
}

.modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    background-color: var(--bg-main);
}

/* Modals Custom Components */
.restricted-alert {
    background-color: var(--status-critical-bg);
    border: 1px solid var(--status-critical-border);
    color: var(--status-critical-text);
    border-radius: var(--border-radius-md);
    padding: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    display: flex;
    gap: 0.75rem;
}

.restricted-alert svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.checksum-box {
    margin-top: 1rem;
    background-color: var(--bg-code);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 0.75rem;
}

.checksum-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.checksum-value {
    font-family: monospace;
    font-size: 0.8rem;
    word-break: break-all;
    color: var(--text-primary);
}

/* SBOM tab/code block */
.sbom-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.sbom-tab-btn {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: all var(--transition-speed);
}

.sbom-tab-btn:hover {
    color: var(--text-primary);
}

.sbom-tab-btn.active {
    color: var(--brand-primary);
    border-bottom-color: var(--brand-primary);
}

.sbom-code {
    max-height: 250px;
    overflow-y: auto;
    font-family: monospace;
    font-size: 0.8rem;
    background-color: var(--bg-code);
    color: var(--text-secondary);
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    white-space: pre;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 300;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 380px;
    width: 90%;
}

.toast {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--brand-primary);
    border-radius: var(--border-radius-md);
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: toastSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: opacity 0.3s, transform 0.3s;
}

.toast.toast-success {
    border-left-color: var(--status-secure-text);
}

.toast.toast-error {
    border-left-color: var(--status-critical-text);
}

.toast.toast-warning {
    border-left-color: var(--status-warning-text);
}

.toast-content {
    flex-grow: 1;
}

.toast-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

.toast-message {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.toast-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.toast-close:hover {
    color: var(--text-primary);
}

.toast-close svg {
    width: 14px;
    height: 14px;
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    .header-container {
        padding: 0 1rem;
    }
    .header-controls {
        gap: 0.5rem;
    }
    .hero-main h1 {
        font-size: 1.75rem;
    }
    .platform-card {
        padding: 1.25rem;
    }
    .sku-grid-box {
        grid-template-columns: 1fr;
    }
    .platform-actions {
        flex-direction: column;
    }
    .platform-actions button, .platform-actions a {
        width: 100%;
        justify-content: center;
    }
    .toast-container {
        bottom: 1rem;
        right: 5%;
        width: 90%;
    }
}

footer {
    text-align: center;
    padding: 2.5rem 0;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--border-color);
    margin-top: 3rem;
}
