/* assets/css/dashboard.css */
:root {
    --panel-padding: 1.25rem;
    --nav-height: 60px;
}

.app-container {
    display: flex;
    flex-direction: column;
    /* CRITICAL: Vertical stack */
    min-height: 100vh;
    background-color: var(--bg-main);
    overflow-y: auto;
}

.dashboard-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 1.25rem;
    padding-bottom: 3rem;
    align-items: start;
}

.charts-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.chart-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-base);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    position: relative;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 990px) {
    .charts-grid {
        grid-template-columns: 1fr;
    }
}

/* Remove Old Sidebar */
.sidebar,
.sidebar-header,
.sidebar-nav,
.sidebar-footer {
    display: none !important;
}

/* =========================================
   Top Navigation Styles (Premium Dark)
   ========================================= */
/* =========================================
   Top Navigation Styles (Premium Glass)
   ========================================= */
/* =========================================
   Top Navigation Styles (Premium Dark)
   DISABLED: Consolidated to Tailwind in topbar.php
   ========================================= */
/*
.top-bar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0 2rem;

    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 100%;
}
*/

/* Brand */
.brand-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
}

.brand-text {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: var(--text-main);
    font-family: 'Inter', system-ui, sans-serif;
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

/* Nav Links Container (The Pill) */
.nav-links {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 5px;
    border-radius: 50px;
    /* Pill Shape */
    border: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center;
    margin-left: 1.5rem;
}

/* Nav Dropdowns (Premium) */
.dropdown-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 15px);
    /* Spaced out */
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    opacity: 0;
    min-width: 240px;

    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 20px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;

    border-radius: 20px;
    padding: 0.8rem;

    z-index: 2000;
    transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Unified Profile Dropdown Style */
.profile-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 260px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    padding: 1rem;
    z-index: 3000;
    animation: menuSlideIn 0.2s ease-out;
}

.profile-dropdown-menu.active {
    display: block;
}

@keyframes menuSlideIn {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(0.98);
    }

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

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem 1rem;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 500;
    transition: all 0.15s ease-out;
    border: 1px solid transparent;
}

.nav-dropdown-menu a:hover {
    background: var(--hover-bg);
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.05);
    transform: translateX(2px);
}

.nav-dropdown-menu a span {
    font-size: 1.1em;
    /* Icons slightly larger */
    filter: grayscale(0.2);
    transition: filter 0.2s;
}

.nav-dropdown-menu a:hover span {
    filter: grayscale(0);
    transform: scale(1.1);
}



.nav-divider {
    width: 1px;
    height: 24px;
    background: var(--border-subtle);
    margin: 0 0.5rem;
    opacity: 0.5;
}

.nav-item {
    padding: 0.4rem 1rem;
    color: var(--text-muted);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.8rem;
    border-radius: 50px;
    /* Pill Shape */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    background: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.nav-item:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-1px);
}

.nav-item.active {
    background: var(--primary-color) !important;
    color: white !important;
    box-shadow: 0 4px 15px var(--primary-glow);
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* =========================================
   Mobile Topbar Refinements 
   ========================================= */
/* =========================================
   Mobile Topbar Refinements 
   ========================================= */
@media (max-width: 991px) {
    .top-bar-nav {
        padding: 0 1rem;
        height: 60px;
        background: rgba(15, 23, 42, 0.95);
        justify-content: space-between;
    }

    /* 1. HIDE Static Brand Name to make room */
    .brand-text {
        display: none !important;
    }

    /* 2. SHOW Org Name (The "Consolidated" View) */
    .org-name-truncate {
        display: block !important;
        font-size: 1.1rem;
        font-weight: 700;
        max-width: 180px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        color: white;
    }

    /* 3. Style Org Switcher to look like the Header Title */
    .org-switcher-btn {
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        margin-right: auto !important;
        /* Push it to the left/center */
        margin-left: 0.5rem;
    }

    .org-switcher-btn .org-current-info {
        gap: 0.5rem;
    }

    .org-icon-box {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    /* 4. Compact Right Side Icons */
    .nav-right {
        gap: 0.8rem !important;
    }

    .btn-icon-circle {
        width: 36px;
        height: 36px;
    }

    /* Hide System Pulse on Mobile */
    #system-pulse {
        display: none;
    }
}

/* =========================================
   Mobile Drawer (The "Sheet" - Refined)
   ========================================= */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    /* Hidden start */
    width: 300px;
    /* Reduced width */
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    /* Almost opaque */
    backdrop-filter: blur(25px);
    z-index: 9999;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.6);
}

.mobile-nav-drawer.open {
    transform: translateX(-320px);
}

.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 12px;
    /* Floating Pill */
    transition: all 0.2s;
    margin-bottom: 0.5rem;
    border: 1px solid transparent;
}

.mobile-nav-item:hover {
    color: white;
    background: rgba(255, 255, 255, 0.03);
    transform: translateX(5px);
}

.mobile-nav-item.active {
    color: var(--primary-color);
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.1), transparent);
    border-left: 3px solid var(--primary-color);
    border-radius: 4px 12px 12px 4px;
    /* Square left for border */
}

/* Special "New Ticket" Button in Drawer */
.mobile-nav-item.highlight {
    margin-top: 1rem;
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
    color: white;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    font-weight: 700;
    text-align: center;
}

.mobile-section-label {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    padding-left: 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dim);
    font-weight: 700;
}

.close-drawer-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.2s;
}

.close-drawer-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.exit-link {
    color: var(--danger-color);
    opacity: 0.8;
}

/* Right Section Elements */
.new-ticket-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0 1rem;
    font-size: 0.85rem;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color));
    box-shadow: 0 4px 15px var(--primary-glow);
    color: white;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s;
    height: 40px;
}

.new-ticket-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.org-switcher-form {
    margin: 0;
    display: flex;
    align-items: center;
}

.org-select {
    background: var(--bg-card);
    color: var(--text-main);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 0 2rem 0 0.8rem;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    height: 40px;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2394a3b8%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 0.7rem top 50%;
    background-size: 0.65rem auto;
}

.org-select:hover {
    border-color: var(--text-main);
    background-color: var(--bg-main);
}

/* User Profile */
.user-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-left: 1.5rem;
    border-left: 1px solid var(--border-subtle);
    margin-left: 0.5rem;
    height: 40px;
}

.user-text {
    text-align: right;
    line-height: 1.2;
}

.user-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.user-role {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.user-avatar-link {
    text-decoration: none;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: var(--bg-elevated);
    border: 2px solid var(--border-base);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
}

.user-avatar-link:hover .user-avatar {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-accent);
}


/* =========================================
   Main Content Area
   ========================================= */
.main-content {
    flex: 1;
    display: block;
    width: 100%;
    margin-top: 0;
}

/* Sub-Header (Page Title & Breadcrumbs) */
.sub-header {
    padding: 1.5rem 2rem 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.breadcrumbs {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.breadcrumbs span:last-child {
    color: var(--text-main);
    font-weight: 600;
}

.content-wrapper {
    padding: 0 2rem 3rem 2rem;
    /* Added bottom padding */
    max-width: 1800px;
    margin: 0 auto;
}

/* Helper Classes */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    padding: var(--panel-padding);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-title {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
}

.stat-trend {
    font-size: 0.8rem;
    color: var(--accent-color);
}

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

/* Table Styles */
.recent-tickets-table {
    width: 100%;
    border-collapse: collapse;
}

.recent-tickets-table th,
.recent-tickets-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-subtle);
}

.recent-tickets-table th {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9rem;
}

.recent-tickets-table tr:hover {
    background: hsla(230, 20%, 20%, 0.3);
}

/* Badges */
.badge {
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-open {
    background: hsla(160, 80%, 45%, 0.2);
    color: var(--accent-color);
}

.badge-priority-high {
    background: hsla(350, 80%, 60%, 0.2);
    color: var(--danger-color);
}

.badge-priority-medium {
    background: hsla(40, 90%, 60%, 0.2);
    color: var(--warning-color);
}

/* Chat Styles */
.ticket-message-stream {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.75rem;
}

.message-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    animation: fadeIn 0.3s ease-out;
}

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

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

.message-row.self {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--bg-elevated);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-main);
    flex-shrink: 0;
    font-size: 0.9rem;
    border: 2px solid var(--border-subtle);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.message-row:hover .message-avatar {
    transform: scale(1.05);
}

.message-row.staff .message-avatar {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--bg-dark-3), hsla(var(--primary-hue), 40%, 15%, 1));
    color: var(--primary-light);
}

.message-bubble {
    background: var(--msg-bg);
    padding: 0.6rem 1rem;
    border-radius: 4px 14px 14px 14px;
    max-width: 85%;
    position: relative;
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.message-row.self .message-bubble {
    border-radius: 18px 4px 18px 18px;
    background: var(--msg-self-bg);
    border-color: var(--msg-border);
}

.message-row.staff .message-bubble {
    border-left: 4px solid var(--primary-color);
    background: linear-gradient(165deg, hsla(var(--primary-hue), 30%, 15%, 0.8), hsla(230, 20%, 12%, 0.8));
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.4rem;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 0.4rem;
}

.message-author {
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.95rem;
}

.message-role {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 2px 8px;
    border-radius: 10px;
    background: hsla(230, 20%, 30%, 0.5);
    color: var(--text-muted);
    font-weight: 700;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.message-role.staff {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 0 10px var(--primary-glow);
}

.message-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.message-body {
    line-height: 1.5;
    color: var(--text-main);
    white-space: pre-wrap;
    font-size: 0.95rem;
}

/* Reply Area Styling */
.reply-container {
    padding: var(--panel-padding);
    background: var(--bg-elevated);
    border-top: 1px solid var(--border-subtle);
}

.reply-textarea {
    width: 100%;
    min-height: 100px;
    background: var(--input-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1rem;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
    transition: all 0.3s ease;
}

.reply-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--input-bg);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

/* Notification Styles */
/* Notification Styles */
.btn-icon {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    color: var(--text-muted);
    transition: all 0.2s;
    padding: 0.5rem;
    border-radius: 8px;
}

.btn-icon:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

.btn-icon-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-right: 1rem;
}

.btn-icon-circle.primary-gradient {
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.btn-icon-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.6);
    color: white;
}

.notification-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--danger-color);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: center;
    border: 2px solid var(--bg-header);
}

.notification-dropdown {
    position: absolute;
    top: 100%;
    right: -20px;
    width: 320px;
    background: var(--bg-surface);
    border: 1px solid var(--border-base);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    z-index: 2000;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.dropdown-header {
    padding: 1rem;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.9rem;
}

.text-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 0.75rem;
    cursor: pointer;
}

.text-btn:hover {
    text-decoration: underline;
}

.dropdown-body {
    max-height: 300px;
    overflow-y: auto;
}

.notification-item {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    gap: 0.8rem;
    cursor: pointer;
    transition: background 0.2s;
}

.notification-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.notif-icon {
    font-size: 0.8rem;
    color: var(--primary-color);
    margin-top: 3px;
}

.notif-icon.system {
    color: var(--accent-color);
}

.notif-icon.alert {
    color: var(--danger-color);
}

.notif-content {
    flex: 1;
}

.notif-msg {
    font-size: 0.85rem;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 0.2rem;
}

.notif-time {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.empty-state {
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
}

/* Dropdown Item Hover Effects */
.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main) !important;
    transform: translateX(4px);
}

/* =========================================
   Organization Switcher (Premium)
   ========================================= */
/* =========================================
   Mobile Navigation Overhaul
   ========================================= */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    padding: 0.5rem;
    margin-right: 0.5rem;
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 280px;
    background: var(--bg-surface);
    z-index: 3000;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-right: 1px solid var(--border-base);
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
}

.mobile-nav-drawer.active {
    transform: translateX(0);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

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

.close-drawer-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
}

.mobile-drawer-body {
    padding: 1.5rem;
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    color: var(--text-main);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background 0.2s;
}

.mobile-nav-item:hover {
    background: var(--hover-bg);
}

.mobile-nav-item.active {
    background: var(--primary-color);
    color: white !important;
}

.mobile-nav-item.highlight {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
    font-weight: 700;
}

.mobile-nav-item.exit {
    margin-top: auto;
    color: var(--danger-color);
    background: rgba(239, 68, 68, 0.05);
}

.mobile-divider {
    height: 1px;
    background: var(--border-subtle);
    margin: 0.5rem 0;
}

.mobile-section-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    margin: 1rem 0 0.5rem 0.5rem;
    letter-spacing: 1px;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .dashboard-layout {
        grid-template-columns: 1fr;
        /* Stack Sidebar */
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: none !important;
    }

    .top-bar-nav {
        padding: 0 1rem;
    }

    .charts-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .nexus-search {
        width: 100%;
        /* Fluid Search */
    }

    .stats-grid {
        grid-template-columns: 1fr;
        /* Stack Stats */
    }
}

/* Ticket Detail Responsiveness */
@media (max-width: 900px) {
    .ticket-detail-layout {
        flex-direction: column;
    }

    .ticket-detail-layout>div {
        width: 100% !important;
        flex: none !important;
    }
}

.org-switcher-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0px 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 220px;
    max-width: 260px;
    outline: none;
    height: 42px;
    box-sizing: border-box;
}

.org-switcher-btn:hover,
.org-switcher-btn.active {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.org-current-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    overflow: hidden;
    height: 100%;
}

.org-icon-box {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-color), #4f46e5);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: white;
    flex-shrink: 0;
    font-weight: 700;
}

.org-name-truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
}

.org-switcher-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 260px;
    background: var(--bg-card);
    /* Fallback or variable */
    background-color: var(--bg-card);
    /* Explicit fallback */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 2000;
}

.org-item {
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.15s;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

/* Danger Buttons */
.btn-danger {
    background: var(--danger-color);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-danger:hover {
    filter: brightness(1.1);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.btn-outline-danger {
    background: transparent;
    border: 1px solid var(--danger-color);
    color: var(--danger-color);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline-danger:hover {
    background: rgba(239, 68, 68, 0.1);
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.2);
}

/* =========================================
   Custom Toast & Modal Styles
   ========================================= */

/* Toast Container */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    pointer-events: none;
    /* Allow clicking through container */
}

.toast-item {
    background: var(--bg-surface);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-base);
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 300px;
    max-width: 450px;
    color: var(--text-main);
    pointer-events: auto;

    /* Animation Initial State */
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast-item.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Toast Variants */
.toast-success {
    border-left-color: #10b981;
}

.toast-error {
    border-left-color: #ef4444;
}

.toast-warning {
    border-left-color: #f59e0b;
}

.toast-info {
    border-left-color: #3b82f6;
}

.toast-icon {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-success .toast-icon {
    color: #10b981;
}

.toast-error .toast-icon {
    color: #ef4444;
}

.toast-warning .toast-icon {
    color: #f59e0b;
}

.toast-info .toast-icon {
    color: #3b82f6;
}

.toast-content {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 500;
}

.toast-close {
    cursor: pointer;
    opacity: 0.5;
    font-size: 1.2rem;
    transition: opacity 0.2s;
}

.toast-close:hover {
    opacity: 1;
}

/* Modal Styles */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-modal-overlay.show {
    opacity: 1;
}

.custom-modal {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.custom-modal-overlay.show .custom-modal {
    transform: scale(1);
}

.modal-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid var(--border-subtle);
}

.modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--text-main);
}

.modal-body {
    padding: 1.5rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

.modal-footer {
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.2);
}

.modal-footer .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    border: none;
    transition: transform 0.2s;
}

.modal-footer .btn:hover {
    transform: translateY(-1px);
}

.modal-cancel {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-subtle);
}

.modal-cancel:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
}

.modal-confirm {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px var(--primary-glow);
}

.org-item.active {
    color: white;
    background: var(--primary-color);
}

.org-manage-action {
    display: block;
    padding: 0.75rem 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.2s;
}

/* =========================================
   Getting Started Checklist (Todo Style)
   ========================================= */
.checklist-container {
    background: var(--bg-surface);
    border: 1px solid var(--border-base);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.checklist-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
}

.checklist-progress-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.checklist-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
    transition: background 0.2s;
    text-decoration: none;
    color: inherit;
    position: relative;
    gap: 1rem;
}

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

.checklist-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.checklist-checkbox {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.checklist-item.completed .checklist-checkbox {
    background: var(--success-color);
    /* Previously primary-color, user asked for checkmark/done icon */
    border-color: var(--success-color);
    color: white;
}

/* Use success color for completed state */
.checklist-item.completed .checklist-checkbox svg {
    opacity: 1;
}

.checklist-content {
    flex: 1;
}

.checklist-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 0.2rem;
}

.checklist-item.completed .checklist-title {
    text-decoration: line-through;
    color: var(--text-muted);
}

.checklist-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.checklist-action {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.checklist-remove-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    opacity: 0;
    cursor: pointer;
    padding: 0.25rem;
    transition: all 0.2s;
}

.checklist-item:hover .checklist-remove-btn {
    opacity: 1;
}

.checklist-remove-btn:hover {
    color: var(--danger-color);
}

/* Responsive Table (Card View) */
@media (max-width: 768px) {

    table,
    thead,
    tbody,
    th,
    td,
    tr {
        display: block;
    }

    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    tr {
        margin-bottom: 1rem;
        background: var(--bg-secondary);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-md);
        padding: 1rem;
    }

    td {
        border: none;
        position: relative;
        padding-left: 50% !important;
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
        text-align: right;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    td:before {
        position: absolute;
        top: 50%;
        left: 1rem;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        transform: translateY(-50%);
        font-weight: 600;
        color: var(--text-muted);
        content: attr(data-label);
        text-align: left;
    }

    /* Adjust specific columns */
    td[data-label="Subject"] {
        text-align: left;
        display: block;
        padding-left: 1rem !important;
        margin-bottom: 0.5rem;
    }

    td[data-label="Subject"]:before {
        display: none;
    }
}

/* Settings Pages Responsiveness */
.profile-avatar-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.avatar-preview {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-dark-3);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-subtle);
}

.settings-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.phone-input-group {
    display: flex;
    gap: 0.5rem;
}

@media (max-width: 991px) {
    .profile-avatar-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .settings-grid-2 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .phone-input-group {
        flex-direction: column;
    }

    .phone-input-group select {
        width: 100% !important;
    }

    /* --- Mobile Settings Overhaul --- */
    /* DEFAULT STATE: Hide Mobile Wrapper, Show Desktop Nav */
    .mobile-settings-nav-wrapper {
        display: none;
    }

    /* 1. Global Container & Grid */
    .nexus-security-grid,
    .settings-grid-2 {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* 2. Card Padding Reduction */
    .nexus-card {
        padding: 1.5rem !important;
        /* Reduced from 2.5rem */
    }

    /* 3. Header Typography */
    .premium-header h1 {
        font-size: 1.8rem !important;
    }

    .premium-header p {
        font-size: 0.95rem !important;
    }

    /* 4. Security Rows Stacking */
    .nexus-card>div[style*="justify-content: space-between"] {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1rem;
    }

    .nexus-card>div[style*="justify-content: space-between"] button,
    .nexus-card>div[style*="justify-content: space-between"] form {
        width: 100%;
        margin-top: 0.5rem;
    }

    .nexus-btn-primary,
    .nexus-btn-secondary {
        width: 100%;
        /* Full width buttons on mobile */
        justify-content: center;
    }

    /* 5. Mobile Settings Nav (Custom Glass Dropdown) */
    .desktop-settings-nav {
        display: none !important;
    }

    .mobile-settings-nav-wrapper {
        display: block !important;
        position: relative;
        z-index: 500;
        margin-bottom: 2rem;
    }

    .custom-glass-select {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 1rem 1.25rem;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        color: white;
        font-weight: 700;
        font-size: 1.1rem;
        cursor: pointer;
        transition: all 0.2s;
    }

    .custom-glass-select:active {
        background: rgba(255, 255, 255, 0.1);
        transform: scale(0.99);
    }

    .custom-glass-options {
        display: none;
        position: absolute;
        top: 110%;
        left: 0;
        width: 100%;
        background: var(--bg-surface);
        /* Solid background to cover content */
        border: 1px solid var(--border-base);
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        overflow: hidden;
        animation: slideDown 0.2s ease-out;
        z-index: 1000;
    }

    .custom-glass-options.open {
        display: flex;
        flex-direction: column;
    }

    .glass-option {
        padding: 1rem 1.25rem;
        color: var(--text-muted);
        text-decoration: none;
        border-bottom: 1px solid var(--border-subtle);
        font-weight: 500;
        transition: all 0.2s;
    }

    .glass-option:last-child {
        border-bottom: none;
    }

    .glass-option.active {
        background: rgba(var(--primary-rgb), 0.1);
        color: var(--primary-color);
        font-weight: 700;
        border-left: 3px solid var(--primary-color);
    }

    /* Org Switcher Fixes */
    .org-switcher-dropdown {
        width: 100vw !important;
        /* Full width */
        max-width: 320px !important;
        /* Cap width for decent look */
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        top: 60px !important;
        position: fixed !important;
        /* Fixed to viewport to avoid clipping */
        z-index: 9999 !important;
        /* Highest priority */
        background: var(--bg-surface);
        padding: 1rem;
        border-radius: 12px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        border: 1px solid var(--border-base);
    }

    .org-item.active {
        /* Premium Active State: Glass + Border (No solid block) */
        background: rgba(var(--primary-rgb), 0.1) !important;
        color: var(--primary-color) !important;
        border: 1px solid var(--primary-color) !important;
        box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.2);
    }

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

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

    /* 6. Login History (Pulse) Fixes */
    .pulse-row {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.8rem !important;
        position: relative;
    }

    /* Ensure icon stays big but doesn't squish */
    .pulse-row>div:first-child {
        width: 100%;
        justify-content: flex-start;
        margin-bottom: 0.5rem;
    }

    /* Wrap the meta row (IP, Time, Badge) */
    .pulse-row .pulse-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        width: 100%;
    }

    /* Fix the "Active Now" floating badge issue */
    .geo-badge {
        position: static !important;
        /* Stop floating */
        display: inline-block;
        margin-left: 0 !important;
    }

    /* 7. Scrollable Tabs */
    .settings-tabs-container {
        overflow-x: auto;
        padding-bottom: 5px;
        margin: 0 -1rem 1.5rem -1rem;
        /* Negative margin to span full width */
        padding: 0 1rem 0.5rem 1rem;
        -webkit-overflow-scrolling: touch;
        display: flex;
        /* Ensure flex behavior */
    }

    /* Hide scrollbar but keep functionality */
    .settings-tabs-container::-webkit-scrollbar {
        height: 4px;
    }

    .settings-tabs-container::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }
}

/* End Mobile Media Query */

/* Default Desktop State (Min Width) */
@media (min-width: 769px) {
    .mobile-settings-nav-wrapper {
        display: none !important;
    }

    .desktop-settings-nav {
        display: flex !important;
    }
}

/* Pulse Panel Styles (Restored) */
.pulse-panel {
    position: fixed;
    right: 0;
    top: var(--nav-height);
    bottom: 0;
    width: 350px;
    background: var(--bg-surface);
    border-left: 1px solid var(--border-base);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2200;
    /* Ensure it is above notification dropdown (2000) */
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
}

.pulse-panel.open {
    transform: translateX(0);
}

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

.pulse-header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
}

.pulse-list {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
}

.close-btn:hover {
    color: var(--text-main);
}

/* =========================================
   Responsive Grid Helpers
   ========================================= */
.admin-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.admin-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.financial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 991px) {

    .admin-grid-4,
    .admin-grid-3,
    .financial-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
}

/* =========================================
   Mobile Table Card View
   ========================================= */
@media (max-width: 768px) {

    .nexus-table.mobile-card-view,
    .nexus-table.mobile-card-view tbody,
    .nexus-table.mobile-card-view tr,
    .nexus-table.mobile-card-view td {
        display: block;
        width: 100%;
    }

    .nexus-table.mobile-card-view thead {
        display: none;
    }

    .nexus-table.mobile-card-view tr {
        margin-bottom: 1rem;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid var(--border-subtle);
        border-radius: 12px;
        padding: 1rem;
    }

    .nexus-table.mobile-card-view td {
        padding: 0.5rem 0;
        text-align: right;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nexus-table.mobile-card-view td:last-child {
        border-bottom: none;
    }

    .nexus-table.mobile-card-view td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-muted);
        text-transform: uppercase;
        font-size: 0.75rem;
        text-align: left;
    }

    /* Specific overrides for first column (Avatar/Name) */
    .nexus-table.mobile-card-view td:first-child {
        padding-top: 0;
        justify-content: flex-start;
    }

    .nexus-table.mobile-card-view td:first-child::before {
        display: none;
    }
}


/* =========================================
   Premium Header & Actions
   ========================================= */
.premium-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 2rem;
}

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

@media (max-width: 991px) {
    .premium-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .header-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .header-actions .search-container {
        width: 100%;
    }

    .header-actions .nexus-search {
        width: 100%;
    }

    .header-actions .nexus-search {
        width: 100%;
    }

    .premium-header .nexus-btn-primary,
    .header-actions .nexus-btn-primary,
    .premium-header .nexus-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}