/* ==========================================================================
   ULAŞ ULUSAL TESİS YÖNETİMİ A.Ş. — ENTERPRISE DESIGN SYSTEM
   Approved UI/UX Reference: Task Pro Vibrant Enterprise Standard (RGBA & Glow)
   ========================================================================== */

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

:root {
    /* Brand Colors (Vibrant Emerald & Jade Corporate Palette with RGBA) */
    --color-primary-rgb: 16, 185, 129;
    --color-primary: rgba(16, 185, 129, 1);           /* Vibrant Emerald */
    --color-primary-dark: rgba(4, 120, 87, 1);        /* Deep Rich Emerald */
    --color-primary-light: rgba(52, 211, 153, 1);     /* Bright Emerald Glow */
    --color-primary-subtle: rgba(16, 185, 129, 0.12); /* Semi-transparent emerald tint */
    --color-primary-focus: rgba(16, 185, 129, 0.22);
    --color-primary-glow: 0 4px 18px rgba(16, 185, 129, 0.35);

    /* Secondary & Accent Colors */
    --color-secondary: rgba(13, 148, 136, 1);         /* Vibrant Teal */
    --color-accent: rgba(16, 185, 129, 1);
    --color-accent-subtle: rgba(20, 184, 166, 0.12);

    /* Status Colors (Vibrant & High-Contrast with RGBA) */
    --color-success: rgba(16, 185, 129, 1);
    --color-success-subtle: rgba(16, 185, 129, 0.14);
    --color-warning: rgba(245, 158, 11, 1);
    --color-warning-subtle: rgba(245, 158, 11, 0.14);
    --color-danger: rgba(244, 63, 94, 1);
    --color-danger-subtle: rgba(244, 63, 94, 0.14);
    --color-info: rgba(14, 165, 233, 1);
    --color-info-subtle: rgba(14, 165, 233, 0.14);
    --color-purple: rgba(139, 92, 246, 1);
    --color-purple-subtle: rgba(139, 92, 246, 0.14);

    /* Neutrals & Surfaces */
    --bg-body: #f8fafc;
    --bg-surface: rgba(255, 255, 255, 1);
    --bg-surface-elevated: rgba(255, 255, 255, 0.95);
    --bg-subtle: rgba(241, 245, 249, 0.85);
    --border-color: rgba(226, 232, 240, 0.85);
    --border-subtle: rgba(241, 245, 249, 0.9);
    --border-focus: rgba(16, 185, 129, 0.6);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --text-inverse: #ffffff;

    /* Spacing & Radii */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 18px;
    --radius-full: 9999px;

    /* Shadows (Vibrant, Ambient, Depth) */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 1px 3px 0 rgba(15, 23, 42, 0.06), 0 1px 2px -1px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 14px -2px rgba(15, 23, 42, 0.07), 0 2px 8px -1px rgba(16, 185, 129, 0.05);
    --shadow-lg: 0 12px 28px -4px rgba(15, 23, 42, 0.09), 0 6px 18px -2px rgba(16, 185, 129, 0.07);
    --shadow-glow: 0 0 22px rgba(16, 185, 129, 0.30);

    /* Layout Dimensions */
    --sidebar-width: 260px;
    --sidebar-collapsed-width: 72px;
    --header-height: 70px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* Scrollbar Enhancement */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(16, 185, 129, 0.35) transparent;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-thumb {
    background: rgba(16, 185, 129, 0.35);
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(16, 185, 129, 0.6);
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-body);
    background-image: 
        radial-gradient(at 0% 0%, rgba(16, 185, 129, 0.06) 0px, transparent 55%),
        radial-gradient(at 100% 0%, rgba(14, 165, 233, 0.05) 0px, transparent 55%),
        radial-gradient(at 50% 100%, rgba(139, 92, 246, 0.03) 0px, transparent 50%);
    background-attachment: fixed;
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================
   LAYOUT STRUCTURE
   ========================================== */
.app-wrapper {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

/* SIDEBAR */
.app-sidebar {
    width: var(--sidebar-width);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.02);
}

.sidebar-header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 800;
    font-size: 1.18rem;
    letter-spacing: -0.02em;
}

.brand-badge {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(16, 185, 129, 1) 0%, rgba(4, 120, 87, 1) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.40);
}

.sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem 0.85rem;
}

.menu-category-title {
    font-size: 0.70rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    padding: 0.65rem 0.75rem 0.35rem 0.75rem;
    margin-top: 0.85rem;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav-item {
    width: 100%;
}

.nav-link-custom {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.68rem 0.95rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.90rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all 0.18s ease-in-out;
    border: 1px solid transparent;
}

.nav-link-custom i, .nav-link-custom svg {
    width: 19px;
    height: 19px;
    stroke-width: 2;
    flex-shrink: 0;
    color: var(--text-muted);
    transition: color 0.18s ease-in-out;
}

.nav-link-custom:hover {
    color: var(--color-primary-dark);
    background-color: var(--color-primary-subtle);
    border-color: rgba(16, 185, 129, 0.15);
}

.nav-link-custom:hover i, .nav-link-custom:hover svg {
    color: var(--color-primary);
}

/* Active State (Vibrant Green Glow Accent) */
.nav-link-custom.active {
    color: var(--color-primary-dark);
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.16) 0%, rgba(16, 185, 129, 0.04) 100%);
    font-weight: 600;
    border-left: 3.5px solid var(--color-primary);
    box-shadow: 0 1px 3px rgba(16, 185, 129, 0.06);
}

.nav-link-custom.active i, .nav-link-custom.active svg {
    color: var(--color-primary);
    filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.35));
}

.sidebar-footer {
    padding: 1rem;
    border-top: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.6);
}

/* MAIN CONTENT WRAPPER */
.app-main {
    flex: 1;
    margin-left: var(--sidebar-width);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-width: 0;
    transition: margin-left 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* HEADER */
.app-header {
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

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

/* Site Selector Dropdown */
.site-selector-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(241, 245, 249, 0.85);
    border: 1px solid rgba(203, 213, 225, 0.8);
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.18s ease;
}

.site-selector-wrapper:hover {
    border-color: rgba(16, 185, 129, 0.4);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

.site-selector-wrapper select {
    background: transparent;
    border: none;
    outline: none;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    cursor: pointer;
}

/* PAGE CONTAINER */
.app-content {
    flex: 1;
    padding: 2rem;
}

/* ==========================================
   COMPONENTS: CARDS (TASK PRO VIBRANT SPEC)
   ========================================== */
.card-ulas {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-ulas:hover {
    border-color: rgba(16, 185, 129, 0.35);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.card-header-ulas {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.card-title-ulas {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.01em;
}

.card-subtitle-ulas {
    font-size: 0.84rem;
    color: var(--text-secondary);
    margin-top: 0.2rem;
}

/* KPI CARDS */
.kpi-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 1.4rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.kpi-card:hover {
    border-color: rgba(16, 185, 129, 0.35);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

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

.kpi-label {
    font-size: 0.80rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.kpi-icon-box {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary-subtle);
    color: var(--color-primary);
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.20);
    transition: transform 0.18s ease;
}

.kpi-card:hover .kpi-icon-box {
    transform: scale(1.08);
}

.kpi-value {
    font-size: 1.95rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 0.35rem;
}

.kpi-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

/* BADGES */
.badge-ulas {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.28rem 0.7rem;
    font-size: 0.76rem;
    font-weight: 700;
    border-radius: var(--radius-full);
}

.badge-subtle-success {
    background-color: var(--color-success-subtle);
    color: var(--color-primary-dark);
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.badge-subtle-warning {
    background-color: var(--color-warning-subtle);
    color: #b45309;
    border: 1px solid rgba(245, 158, 11, 0.25);
}

.badge-subtle-danger {
    background-color: var(--color-danger-subtle);
    color: #e11d48;
    border: 1px solid rgba(244, 63, 94, 0.25);
}

.badge-subtle-primary {
    background-color: var(--color-primary-subtle);
    color: var(--color-primary-dark);
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.badge-subtle-info {
    background-color: var(--color-info-subtle);
    color: #0284c7;
    border: 1px solid rgba(14, 165, 233, 0.25);
}

/* BUTTONS */
.btn-ulas {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.62rem 1.35rem;
    font-size: 0.90rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-ulas-primary {
    background: linear-gradient(135deg, rgba(16, 185, 129, 1) 0%, rgba(5, 150, 105, 1) 100%);
    color: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.35);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.btn-ulas-primary:hover {
    background: linear-gradient(135deg, rgba(5, 150, 105, 1) 0%, rgba(4, 120, 87, 1) 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.48);
    transform: translateY(-1px);
}

.btn-ulas-outline {
    background-color: #ffffff;
    border-color: rgba(203, 213, 225, 0.9);
    color: var(--text-primary);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.btn-ulas-outline:hover {
    background-color: var(--bg-subtle);
    border-color: rgba(16, 185, 129, 0.4);
    color: var(--color-primary-dark);
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.12);
}

.btn-ulas-sm {
    padding: 0.38rem 0.8rem;
    font-size: 0.82rem;
}

/* DATA TABLE */
.table-ulas-container {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: #ffffff;
}

.table-ulas {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.88rem;
}

.table-ulas th {
    background-color: rgba(248, 250, 252, 0.95);
    color: var(--text-secondary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.74rem;
    letter-spacing: 0.05em;
    padding: 0.95rem 1.1rem;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
}

.table-ulas td {
    padding: 1rem 1.1rem;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-primary);
    vertical-align: middle;
}

.table-ulas tbody tr {
    transition: background-color 0.15s ease;
}

.table-ulas tbody tr:hover {
    background-color: rgba(16, 185, 129, 0.03);
}

/* USER PROFILE IN HEADER */
.user-menu-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    text-decoration: none;
    color: var(--text-primary);
    background: transparent;
    border: none;
    padding: 0;
    outline: none;
}

.user-avatar-circle {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.18) 0%, rgba(16, 185, 129, 0.08) 100%);
    color: var(--color-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.92rem;
    border: 1.5px solid rgba(16, 185, 129, 0.35);
}

.user-info-text {
    display: flex;
    flex-direction: column;
}

.user-info-name {
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.2;
}

.user-info-role {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.header-right .dropdown {
    position: relative;
}

.header-right .dropdown-menu {
    position: absolute !important;
    right: 0 !important;
    left: auto !important;
    top: 100% !important;
    margin-top: 0.5rem !important;
    z-index: 1060 !important;
    min-width: 230px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1) !important;
}

/* GLOBAL FORM CONTROLS ENHANCEMENT */
.form-control, .form-select {
    border: 1px solid rgba(203, 213, 225, 0.9);
    border-radius: var(--radius-md);
    transition: all 0.18s ease-in-out;
}

.form-control:focus, .form-select:focus {
    border-color: rgba(16, 185, 129, 0.85) !important;
    box-shadow: 0 0 0 3.5px rgba(16, 185, 129, 0.20) !important;
}

/* SIDEBAR CONTROLS & COLLAPSED DESKTOP SUPPORT */
.sidebar-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(241, 245, 249, 0.9);
    border: 1px solid rgba(203, 213, 225, 0.8);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.sidebar-toggle-btn:hover {
    background: #ffffff;
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}

/* DESKTOP COLLAPSED STATE */
@media (min-width: 992px) {
    /* Tamamen Gizle / Kapat Modu */
    body.sidebar-closed .app-sidebar {
        transform: translateX(-100%);
    }

    body.sidebar-closed .app-main {
        margin-left: 0 !important;
    }
}

.sidebar-close-btn {
    display: none;
    background: rgba(241, 245, 249, 0.9);
    border: 1px solid rgba(203, 213, 225, 0.8);
    color: var(--text-secondary);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    flex-shrink: 0;
}

.sidebar-close-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.3);
}

.sidebar-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    transition: opacity 0.25s ease;
    cursor: pointer;
}

.sidebar-backdrop.active {
    display: block;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .app-sidebar {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        width: 280px;
        max-width: 85vw;
        z-index: 1050;
        transform: translateX(-100%);
        transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s ease;
        box-shadow: none;
    }

    .app-sidebar.show-sidebar {
        transform: translateX(0);
        box-shadow: 10px 0 35px rgba(0, 0, 0, 0.28);
    }

    .sidebar-close-btn {
        display: inline-flex;
    }

    .app-main {
        margin-left: 0 !important;
        width: 100%;
        min-width: 0;
    }

    .sidebar-toggle-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        padding: 0;
        border-radius: 8px;
        background: rgba(241, 245, 249, 0.9);
        border: 1px solid rgba(203, 213, 225, 0.8);
        color: var(--text-primary);
        flex-shrink: 0;
    }

    .sidebar-toggle-btn:hover {
        background: #ffffff;
        border-color: var(--color-primary);
        color: var(--color-primary);
    }

    /* TOPBAR MOBİL SIĞMA DÜZELTMESİ (IMAGE 2 FIX) */
    .app-header {
        padding: 0 0.85rem;
        gap: 0.5rem;
        overflow: visible;
        width: 100%;
    }

    .header-right .dropdown-menu {
        right: 0 !important;
        left: auto !important;
        max-width: calc(100vw - 24px);
    }

    .header-left {
        gap: 0.5rem;
        min-width: 0;
        flex: 1 1 auto;
        overflow: hidden;
    }

    .header-right {
        gap: 0.45rem;
        flex-shrink: 0;
    }

    .site-selector-wrapper {
        min-width: 0;
        max-width: 100%;
        flex: 1 1 auto;
        padding: 0.35rem 0.55rem;
        gap: 0.35rem;
        font-size: 0.82rem;
    }

    .site-selector-wrapper form {
        min-width: 0;
        flex: 1;
        display: flex;
        align-items: center;
    }

    .site-selector-wrapper select {
        min-width: 0;
        width: 100%;
        max-width: 180px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        font-size: 0.82rem;
    }

    .site-selector-wrapper span {
        min-width: 0;
        max-width: 180px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        font-size: 0.82rem;
    }

    .user-avatar-circle {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }

    .app-content {
        padding: 1.25rem 0.85rem;
    }
}

@media (max-width: 576px) {
    .app-header {
        padding: 0 0.5rem;
        gap: 0.35rem;
    }

    .header-left {
        gap: 0.35rem;
    }

    .header-right {
        gap: 0.35rem;
    }

    .sidebar-toggle-btn {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
    }

    .site-selector-wrapper {
        padding: 0.3rem 0.45rem;
    }

    .site-selector-wrapper i {
        font-size: 0.78rem;
    }

    .site-selector-wrapper select {
        max-width: 130px;
        font-size: 0.78rem;
    }

    .site-selector-wrapper span {
        max-width: 130px;
        font-size: 0.78rem;
    }

    .header-right a.btn {
        width: 34px;
        height: 34px;
        padding: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .user-menu-box i.fa-chevron-down {
        display: none !important;
    }

    .user-avatar-circle {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}

@media (max-width: 380px) {
    .site-selector-wrapper select {
        max-width: 95px;
        font-size: 0.74rem;
    }

    .site-selector-wrapper span {
        max-width: 95px;
        font-size: 0.74rem;
    }

    .header-left {
        gap: 0.25rem;
    }

    .header-right {
        gap: 0.25rem;
    }
}

