:root {
    --sidebar-width: 274px;
    --sidebar-collapsed-width: 84px;
    --sidebar-bg: #ffffff;
    --sidebar-border: #e2e8f0;
    --sidebar-text: #334155;
    --sidebar-muted: #64748b;
    --sidebar-hover-bg: #f8fafc;
    --sidebar-active-bg: #e8f0ff;
    --sidebar-active-text: #1d4ed8;
    --primary-color: #2563eb;
    --bg-body: #f4f7fb;
    --card-shadow: 0 1px 3px rgb(15 23 42 / 8%), 0 1px 2px rgb(15 23 42 / 6%);
    --transition-speed: 0.24s;
}

body {
    font-family: "Inter", sans-serif;
    background-color: var(--bg-body);
    color: #1e293b;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-size: 0.9rem;
}

body.app-mobile-menu-open {
    overflow: hidden;
}

#wrapper {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

#sidebar-wrapper {
    width: var(--sidebar-width);
    background: var(--sidebar-bg);
    border-right: 1px solid var(--sidebar-border);
    transition: width var(--transition-speed) ease, transform var(--transition-speed) ease;
    z-index: 1030;
    position: fixed;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 6px 0 18px rgb(15 23 42 / 4%);
}

#page-content-wrapper {
    flex: 1;
    margin-left: var(--sidebar-width);
    transition: margin-left var(--transition-speed) ease;
    min-width: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#wrapper.sidebar-collapsed #sidebar-wrapper {
    width: var(--sidebar-collapsed-width);
}

#wrapper.sidebar-collapsed #page-content-wrapper {
    margin-left: var(--sidebar-collapsed-width);
}

#wrapper.no-sidebar #page-content-wrapper,
#page-content-wrapper.no-sidebar-content {
    margin-left: 0;
    width: 100%;
}

.app-sidebar-brand {
    min-height: 78px;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid var(--sidebar-border);
}

.app-brand-icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 8px 20px rgb(37 99 235 / 20%);
}

.app-brand-title {
    color: #0f172a;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
}

.app-brand-subtitle {
    color: #64748b;
    font-size: 0.64rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.app-sidebar-nav {
    overflow-y: auto;
    padding: 0.8rem 0.55rem 1rem;
    flex: 1;
}

.app-sidebar-nav::-webkit-scrollbar {
    width: 5px;
}

.app-sidebar-nav::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.app-sidebar-section-title {
    color: #64748b;
    font-size: 0.64rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.95rem 0.75rem 0.5rem;
}

.app-sidebar .list-group-item {
    color: var(--sidebar-text);
    background: transparent;
    border: 1px solid transparent;
    border-radius: 10px;
    margin: 0.12rem 0.18rem;
    padding: 0.62rem 0.75rem;
    display: flex;
    align-items: center;
    font-size: 0.84rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.app-sidebar .list-group-item i {
    width: 22px;
    min-width: 22px;
    text-align: center;
    margin-right: 0.72rem;
    font-size: 0.9rem;
    color: #64748b;
}

.app-sidebar .list-group-item:hover {
    background: var(--sidebar-hover-bg);
    border-color: #e2e8f0;
    color: #0f172a;
    transform: translateX(2px);
}

.app-sidebar .list-group-item.active {
    background: var(--sidebar-active-bg);
    border-color: #bfdbfe;
    color: var(--sidebar-active-text);
}

.app-sidebar .list-group-item.active i {
    color: var(--sidebar-active-text);
}

.app-sidebar .list-group-item span {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.app-sidebar-footer {
    border-top: 1px solid var(--sidebar-border);
    background: #fcfdff;
    padding: 1rem 1rem 1.1rem;
}

.app-user-box {
    margin-bottom: 0.85rem;
}

.user-avatar {
    width: 36px;
    min-width: 36px;
    height: 36px;
    border-radius: 11px;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 10px 16px rgb(37 99 235 / 18%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.app-user-name {
    color: #0f172a;
    font-size: 0.83rem;
    font-weight: 700;
}

.app-user-role {
    color: #64748b;
    font-size: 0.67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.logout-btn {
    border: 1px solid #fecaca;
    background: #fff1f2;
    color: #b91c1c;
    border-radius: 10px;
    font-size: 0.74rem;
    font-weight: 700;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.logout-btn:hover {
    border-color: #fca5a5;
    background: #ffe4e6;
    color: #991b1b;
}

.app-navbar {
    min-height: 52px;
    background: #ffffff;
    border-bottom: 1px solid #e6e6e6;
    padding: 0.18rem 1rem;
}

.app-navbar-shell {
    gap: 0.85rem;
    align-items: center;
}

.app-navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-right: 0;
    text-decoration: none;
}

.app-navbar-brand-mark {
    width: 78px;
    min-width: 78px;
    height: 37px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.app-navbar-brand-logo {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: 78px;
    height: auto;
}

.app-navbar-mobile-title {
    display: none;
    min-width: 0;
    flex: 1 1 auto;
    color: #0f172a;
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-navbar-brand-copy {
    display: flex;
    align-items: center;
    line-height: 1;
}

.app-navbar-brand-text {
    font-size: 0.93rem;
    font-weight: 600;
    color: #262626;
    letter-spacing: 0;
}

.app-navbar-divider {
    width: 1px;
    height: 24px;
    background: #d9d9d9;
    flex: 0 0 auto;
    margin-right: 0.1rem;
}

.app-navbar-product {
    color: #262626;
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}

.app-navbar-collapse {
    min-width: 0;
    align-items: center;
}

.app-nav-links {
    gap: 0.2rem;
    margin-left: 0.35rem;
    align-items: center;
}

.app-nav-link {
    min-height: 44px;
    padding: 0 0.5rem !important;
    border-radius: 0;
    color: #444;
    font-size: 0.79rem;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    position: relative;
}

.app-nav-link-icon {
    display: none;
    width: 18px;
    min-width: 18px;
    text-align: center;
}

.app-nav-link-text {
    display: inline-flex;
    align-items: center;
}

.app-nav-link:hover,
.app-navbar .nav-link.show {
    color: #000;
    background: transparent;
}

.app-nav-link.active {
    color: #000;
    background: transparent;
    font-weight: 600;
    box-shadow: none;
}

.app-nav-link.active::after {
    content: "";
    position: absolute;
    left: 0.45rem;
    right: 0.45rem;
    bottom: 0.38rem;
    height: 2px;
    background: #000;
}

.app-nav-dropdown {
    border: 1px solid #e5e7eb;
    border-radius: 2px;
    padding: 0.25rem;
    min-width: 210px;
    box-shadow: 0 8px 18px rgb(15 23 42 / 7%) !important;
}

.app-nav-dropdown .dropdown-item {
    border-radius: 2px;
    font-size: 0.76rem;
    font-weight: 400;
    padding: 0.46rem 0.55rem;
    color: #262626;
}

.app-nav-dropdown .dropdown-item:hover {
    background: #f5f5f5;
}

.app-nav-dropdown .dropdown-item.active {
    background: #f3f3f3;
    color: #000;
    box-shadow: none;
}

.app-account-trigger {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.08rem 0.12rem 0.08rem 0.4rem !important;
    border-radius: 999px;
    border: 1px solid transparent;
    background: transparent;
}

.app-account-trigger:hover,
.app-navbar .nav-link.app-account-trigger.show {
    background: #f5f5f5;
    border-color: #ececec;
}

.app-account-trigger.dropdown-toggle::after {
    margin-left: 0.05rem;
    opacity: 0.45;
}

.avatar-circle {
    width: 28px;
    min-width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f3f7ff;
    color: #174ea6;
    border: 1px solid #d9e6ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    font-weight: 700;
}

.app-account-name {
    color: #262626;
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1;
    max-width: 210px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.app-account-dropdown {
    border: 1px solid #e5e7eb;
    border-radius: 2px;
    padding: 0.3rem;
    min-width: 210px;
}

.app-navbar .dropdown-menu {
    border: 1px solid #e5e7eb;
    border-radius: 2px;
    padding: 0.3rem;
    min-width: 210px;
}

.app-navbar .dropdown-item {
    border-radius: 2px;
    font-size: 0.76rem;
    font-weight: 400;
    padding: 0.44rem 0.54rem;
}

.app-navbar .dropdown-item:hover {
    background: #f5f5f5;
}

.app-navbar .dropdown-toggle::after {
    margin-left: 0.22rem;
    vertical-align: 0.12em;
    opacity: 0.35;
    border-top-width: 0.24em;
    border-right-width: 0.2em;
    border-left-width: 0.2em;
}

.app-navbar-toggler {
    border-radius: 2px;
    padding: 0.18rem 0.4rem;
    border: 1px solid #e5e7eb !important;
}

.app-navbar-toggler:focus {
    box-shadow: none;
    border-color: #cbd5e1 !important;
}

.navbar-toggler-icon {
    width: 1.1em;
    height: 1.1em;
}

.animate-fade-in {
    animation: dropdownFadeIn 0.18s ease-in-out;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

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

#wrapper.sidebar-collapsed #sidebar-wrapper .app-brand-copy,
#wrapper.sidebar-collapsed #sidebar-wrapper .app-sidebar-section-title,
#wrapper.sidebar-collapsed #sidebar-wrapper .app-user-info,
#wrapper.sidebar-collapsed #sidebar-wrapper .logout-label {
    display: none !important;
}

#wrapper.sidebar-collapsed #sidebar-wrapper .app-sidebar-brand {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
}

#wrapper.sidebar-collapsed #sidebar-wrapper .app-sidebar-brand a {
    justify-content: center;
}

#wrapper.sidebar-collapsed #sidebar-wrapper .app-brand-icon {
    margin-right: 0;
}

#wrapper.sidebar-collapsed #sidebar-wrapper .app-sidebar .list-group-item {
    justify-content: center;
    padding-left: 0.35rem;
    padding-right: 0.35rem;
}

#wrapper.sidebar-collapsed #sidebar-wrapper .app-sidebar .list-group-item i {
    margin-right: 0;
}

#wrapper.sidebar-collapsed #sidebar-wrapper .app-sidebar .list-group-item span {
    display: none;
}

#wrapper.sidebar-collapsed #sidebar-wrapper .app-user-box,
#wrapper.sidebar-collapsed #sidebar-wrapper .logout-btn {
    justify-content: center !important;
}

#wrapper.sidebar-collapsed #sidebar-wrapper .logout-btn i {
    margin-right: 0 !important;
}

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgb(15 23 42 / 30%);
    backdrop-filter: blur(1px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-speed) ease;
    z-index: 1020;
}

.mobile-menu-scrim,
.mobile-bottom-nav {
    display: none;
}

main.container-fluid {
    flex: 1 0 auto;
    padding: 1.6rem !important;
}

.app-footer {
    display: block;
    width: 100%;
    margin-top: auto;
    padding: 0 1.6rem 1.4rem;
    background: transparent;
    flex: 0 0 auto;
}

.app-footer-shell {
    width: 100%;
    border-top: 1px solid #dbe5ef;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
    border-radius: 14px;
    padding: 0.9rem 1.2rem;
    text-align: center;
    color: #6b7f90;
    font-size: 0.75rem;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.app-footer strong {
    color: #334155;
}

.text-slate-900 {
    color: #0f172a !important;
}

.text-slate-800 {
    color: #1e293b !important;
}

.text-slate-700 {
    color: #334155 !important;
}

.text-slate-600 {
    color: #475569 !important;
}

.letter-spacing-lg {
    letter-spacing: 0.08em !important;
}

.vertical-middle {
    vertical-align: middle !important;
}

.card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

.card-header {
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
}

.table {
    font-size: 0.84rem;
}

.table thead th {
    background-color: #f8fafc;
    color: #64748b;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #e2e8f0;
    border-top: none;
}

.table tbody td {
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
}

.form-control,
.form-select {
    border-color: #dbe5ef;
    font-size: 0.84rem;
}

.form-label {
    font-size: 0.76rem;
    font-weight: 700;
    color: #475569;
}

.btn {
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 8px;
}

.btn-sm {
    font-size: 0.72rem;
}

.app-sidebar .list-group-item:focus-visible,
.app-navbar .nav-link:focus-visible,
.app-navbar .dropdown-item:focus-visible,
.logout-btn:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

@media (max-width: 991.98px) {
    #sidebar-wrapper {
        transform: translateX(-100%);
        width: min(88vw, 320px);
    }

    #page-content-wrapper {
        margin-left: 0 !important;
    }

    #wrapper.sidebar-open #sidebar-wrapper {
        transform: translateX(0);
    }

    #wrapper.sidebar-open .sidebar-overlay {
        opacity: 1;
        pointer-events: auto;
    }
}

@media (max-width: 1199.98px) {
    .app-navbar {
        min-height: 54px;
        padding-top: 0.35rem;
        padding-bottom: 0.35rem;
        padding-left: 0.9rem;
        padding-right: 0.9rem;
    }

    .app-navbar-divider,
    .app-navbar-product {
        display: none !important;
    }

    .app-nav-links {
        margin-left: 0;
        padding-top: 0;
        gap: 0.15rem;
        align-items: stretch;
    }

    .app-navbar-collapse {
        width: 100%;
        margin-top: 0.45rem;
        padding-top: 0.55rem;
        border-top: 1px solid #eef2f7;
    }

    .app-nav-link {
        width: 100%;
        justify-content: flex-start;
        border-radius: 4px;
        min-height: 36px;
        padding-left: 0.55rem !important;
        padding-right: 0.55rem !important;
        text-decoration: none !important;
    }

    .app-nav-link.active::after {
        display: none;
    }

    .app-nav-dropdown {
        border: none;
        box-shadow: none !important;
        padding: 0.15rem 0 0.2rem 0.8rem;
        min-width: 100%;
        background: transparent;
    }

    .app-nav-dropdown .dropdown-item {
        padding: 0.42rem 0.4rem;
    }

    .app-account-trigger {
        align-self: flex-start;
        margin-top: 0.25rem;
        padding-left: 0.1rem !important;
    }

    .app-account-name {
        max-width: 140px;
    }
}

@media (max-width: 575.98px) {
    .app-navbar-brand-text {
        font-size: 0.8rem;
    }

    .app-navbar-brand-mark,
    .app-navbar-brand-logo {
        width: 56px;
    }

    .app-navbar-brand-mark {
        min-width: 56px;
        height: 26px;
    }

    .app-navbar {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .app-account-name {
        display: none !important;
    }
}

@media (max-width: 768px) {
    main.container-fluid {
        padding: 1rem !important;
    }

    .table-dashboard {
        font-size: 0.68rem;
    }

    .d-flex.gap-2 {
        flex-wrap: wrap;
    }
}

@media (max-width: 767.98px) {
    body.app-authenticated {
        background:
            radial-gradient(circle at top left, rgba(37, 99, 235, 0.18), transparent 34%),
            radial-gradient(circle at bottom right, rgba(251, 191, 36, 0.16), transparent 32%),
            linear-gradient(180deg, #edf5ff 0%, #f6f9fd 52%, #eef3fb 100%);
    }

    body.app-guest {
        background:
            radial-gradient(circle at top right, rgba(37, 99, 235, 0.12), transparent 34%),
            linear-gradient(180deg, #f4f7fb 0%, #eef3fb 100%);
    }

    #page-content-wrapper {
        padding-bottom: calc(6.25rem + env(safe-area-inset-bottom));
    }

    .app-navbar {
        top: calc(0.45rem + env(safe-area-inset-top));
        margin: 0.45rem 0.75rem 0;
        min-height: 60px;
        padding: 0.55rem 0.8rem;
        border: 1px solid rgba(219, 229, 239, 0.92);
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.82);
        box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
        backdrop-filter: blur(18px);
    }

    .app-navbar-shell {
        min-height: 44px;
    }

    .app-navbar-brand {
        flex: 0 0 auto;
    }

    .app-navbar-brand-mark,
    .app-navbar-brand-logo {
        width: 54px;
    }

    .app-navbar-brand-mark {
        min-width: 54px;
        height: 28px;
    }

    .app-navbar-mobile-title {
        display: inline-flex;
        align-items: center;
    }

    .app-navbar-toggler {
        width: 42px;
        min-width: 42px;
        height: 42px;
        border-radius: 14px;
        padding: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #f8fbff;
        border-color: #dbe5ef !important;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
    }

    .app-navbar-collapse {
        width: auto;
        margin-top: 0;
        padding-top: 0;
        border-top: 0;
    }

    .app-navbar-collapse.show,
    .app-navbar-collapse.collapsing {
        position: fixed;
        left: 0.75rem;
        right: 0.75rem;
        top: calc(4.9rem + env(safe-area-inset-top));
        bottom: calc(5.7rem + env(safe-area-inset-bottom));
        z-index: 1045;
        display: flex !important;
        flex-direction: column;
        overflow-y: auto;
        margin-top: 0;
        padding: 1rem 0.9rem 1rem;
        border: 1px solid rgba(219, 229, 239, 0.96);
        border-radius: 28px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
        backdrop-filter: blur(18px);
    }

    .app-nav-links {
        gap: 0.35rem;
    }

    .app-nav-link {
        min-height: 50px;
        padding-left: 0.9rem !important;
        padding-right: 0.9rem !important;
        border-radius: 16px;
        justify-content: flex-start;
        gap: 0.7rem;
        background: #f8fbff;
        color: #334155;
        font-size: 0.82rem;
        font-weight: 700;
        border: 1px solid transparent;
    }

    .app-nav-link:hover,
    .app-navbar .nav-link.show {
        background: #f1f6ff;
        border-color: #dbe5ef;
        color: #0f172a;
    }

    .app-nav-link.active {
        background: linear-gradient(135deg, #e8f0ff 0%, #f7fbff 100%);
        border-color: #bfdbfe;
        color: #1d4ed8;
    }

    .app-nav-link.active::after {
        display: none;
    }

    .app-nav-link-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: currentColor;
    }

    .app-nav-dropdown,
    .app-navbar .dropdown-menu {
        padding: 0.25rem 0 0.1rem 0.65rem;
        border: 0;
        border-radius: 0;
        box-shadow: none !important;
        background: transparent;
        min-width: 100%;
        margin-top: 0.15rem !important;
    }

    .app-nav-dropdown .dropdown-item,
    .app-navbar .dropdown-item {
        padding: 0.68rem 0.8rem;
        margin-bottom: 0.25rem;
        border-radius: 15px;
        background: #fbfdff;
        color: #334155;
        font-size: 0.78rem;
        font-weight: 600;
    }

    .app-nav-dropdown .dropdown-item:hover,
    .app-navbar .dropdown-item:hover {
        background: #f1f5f9;
    }

    .app-account-trigger {
        width: 100%;
        margin-top: 0.8rem;
        justify-content: space-between;
        padding: 0.55rem 0.7rem !important;
        border-radius: 18px;
        border: 1px solid #dbe5ef;
        background: #f8fafc;
    }

    .mobile-menu-scrim {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.28);
        backdrop-filter: blur(6px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
        z-index: 1040;
    }

    body.app-mobile-menu-open .mobile-menu-scrim {
        opacity: 1;
        pointer-events: auto;
    }

    main.container-fluid {
        margin: 0.8rem 0.75rem 0;
        padding: 1rem 0.95rem 1.1rem !important;
        border: 1px solid rgba(255, 255, 255, 0.78);
        border-radius: 30px;
        background: rgba(255, 255, 255, 0.78);
        box-shadow: 0 22px 44px rgba(15, 23, 42, 0.08);
        backdrop-filter: blur(18px);
    }

    body.app-authenticated main.container-fluid {
        padding-bottom: calc(1.2rem + env(safe-area-inset-bottom)) !important;
    }

    .alert {
        border-radius: 18px;
    }

    .card {
        border-radius: 20px;
        box-shadow: 0 16px 30px rgba(15, 23, 42, 0.06);
    }

    .card-header {
        border-top-left-radius: 20px !important;
        border-top-right-radius: 20px !important;
    }

    .table-responsive {
        border-radius: 18px;
    }

    .app-footer {
        display: none;
    }

    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        left: 0.75rem;
        right: 0.75rem;
        bottom: calc(0.75rem + env(safe-area-inset-bottom));
        z-index: 1045;
        gap: 0.35rem;
        padding: 0.45rem;
        border: 1px solid rgba(219, 229, 239, 0.95);
        border-radius: 28px;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 22px 46px rgba(15, 23, 42, 0.12);
        backdrop-filter: blur(18px);
    }

    .mobile-bottom-nav__link {
        flex: 1 1 0;
        min-width: 0;
        min-height: 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        padding: 0.5rem 0.25rem;
        border-radius: 18px;
        color: #64748b;
        text-decoration: none;
        transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

    .mobile-bottom-nav__link:hover {
        color: #334155;
        background: #f8fafc;
    }

    .mobile-bottom-nav__link.active {
        color: #1d4ed8;
        background: linear-gradient(180deg, #e8f0ff 0%, #f7fbff 100%);
    }

    .mobile-bottom-nav__link i {
        font-size: 1rem;
        line-height: 1;
    }

    .mobile-bottom-nav__link span {
        font-size: 0.62rem;
        font-weight: 700;
        letter-spacing: 0.02em;
        line-height: 1;
    }
}
