:root {
    --app-bg: #f3f5f8;
    --app-bg-strong: #e9edf3;
    --app-surface: rgba(255, 255, 255, 0.78);
    --app-surface-strong: rgba(255, 255, 255, 0.92);
    --app-surface-solid: #ffffff;
    --app-border: rgba(15, 23, 42, 0.08);
    --app-border-strong: rgba(15, 23, 42, 0.14);
    --app-shadow-soft: 0 18px 44px rgba(15, 23, 42, 0.07);
    --app-shadow-medium: 0 24px 60px rgba(15, 23, 42, 0.12);
    --app-shadow-strong: 0 28px 90px rgba(15, 23, 42, 0.16);
    --app-text: #111827;
    --app-text-soft: #475569;
    --app-text-muted: #6b7280;
    --app-primary: #0a84ff;
    --app-primary-strong: #0066cc;
    --app-success: #16a34a;
    --app-warning: #f59e0b;
    --app-danger: #ef4444;
    --app-radius-xs: 14px;
    --app-radius-sm: 18px;
    --app-radius-md: 24px;
    --app-radius-lg: 32px;
    --app-radius-xl: 38px;
    --app-content-max: 1280px;
}

html {
    font-size: 16px;
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--app-text);
    background:
        radial-gradient(circle at top left, rgba(10, 132, 255, 0.16), transparent 24%),
        radial-gradient(circle at top right, rgba(52, 199, 89, 0.10), transparent 20%),
        radial-gradient(circle at bottom, rgba(255, 159, 10, 0.08), transparent 22%),
        linear-gradient(180deg, #f8fafc 0%, #eef2f7 46%, #e9edf4 100%);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

a {
    color: var(--app-primary-strong);
    transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

a:hover {
    color: var(--app-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
    color: #0f172a;
    letter-spacing: -0.03em;
}

h2 {
    margin-top: 0;
    margin-bottom: 0.85rem;
    font-size: clamp(1.3rem, 2vw, 1.8rem) !important;
    font-weight: 800;
    text-transform: none;
    letter-spacing: -0.03em;
}

p,
label,
li,
span,
small {
    overflow-wrap: break-word;
    word-break: normal;
}

.top-app-bar {
    position: sticky;
    top: 0;
    z-index: 1050;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1.3rem;
    background: rgba(248, 250, 252, 0.78);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
}

.top-app-bar-left {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.top-app-bar-logo {
    width: 124px;
    height: 48px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 8px 24px rgba(15, 23, 42, 0.07);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.55rem;
    flex: 0 0 124px;
    overflow: hidden;
    text-decoration: none;
}

.top-app-bar-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.top-app-bar-logo span {
    font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0;
}

.top-app-bar-menu-btn,
.top-app-bar-logout {
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 8px 24px rgba(15, 23, 42, 0.08);
}

.top-app-bar-menu-btn {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
}

.top-app-bar-menu-btn i {
    font-size: 1.2rem;
}

.top-app-bar-title {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
}

.top-app-bar-sub {
    margin-top: 0.18rem;
    font-size: 0.82rem;
    color: var(--app-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: min(55vw, 520px);
}

.top-app-bar-logout {
    border-radius: 999px;
    padding: 0.7rem 1rem;
    font-size: 0.84rem;
    font-weight: 700;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.top-app-bar-logout:hover,
.top-app-bar-menu-btn:hover {
    transform: translateY(-1px);
}

.mobile-app-shell {
    max-width: var(--app-content-max);
    margin: 0 auto;
    min-height: calc(100vh - 86px);
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1rem 1.6rem;
}

.mobile-app-content {
    flex: 1 1 auto;
    padding: 0.2rem 0 1.25rem;
    min-width: 0;
}

.app-screen {
    position: relative;
    width: 100%;
    max-width: 100%;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.94)),
        linear-gradient(120deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.3));
    backdrop-filter: blur(28px) saturate(150%);
    -webkit-backdrop-filter: blur(28px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--app-radius-xl);
    padding: clamp(1.2rem, 2.4vw, 2rem);
    box-shadow: var(--app-shadow-medium);
    overflow: hidden;
}

.app-screen::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), transparent 22%);
    pointer-events: none;
}

.app-screen > * {
    position: relative;
    z-index: 1;
}

.app-screen-title {
    margin-bottom: 0.4rem;
    font-size: clamp(1.3rem, 2.4vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    text-transform: none;
}

.app-screen-title.d-flex {
    gap: 0.75rem;
    flex-wrap: wrap;
}

.app-screen-sub {
    color: var(--app-text-soft);
    font-size: 0.97rem;
}

.app-section {
    margin-top: 1.25rem;
}

.app-page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.app-page-header__content {
    min-width: 0;
}

.app-page-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.app-page-title {
    margin: 0;
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    font-weight: 800;
    line-height: 1.1;
}

.app-page-subtitle {
    margin-top: 0.35rem;
    color: var(--app-text-soft);
    font-size: 0.95rem;
}

.app-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.app-toolbar__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.app-card,
.card,
.modal-content,
.table-responsive {
    background: var(--app-surface-strong);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--app-border);
    border-radius: var(--app-radius-md);
    box-shadow: var(--app-shadow-soft);
}

.app-card {
    padding: 1.15rem 1.2rem 1.25rem;
}

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

.app-card-title {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--app-text);
}

.app-card-toggle {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    border: 1px solid var(--app-border);
    background: rgba(255, 255, 255, 0.88);
}

.app-metric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.8rem;
    text-align: center;
}

.app-metric-tile {
    min-height: 116px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.8rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.88));
    text-decoration: none;
    color: inherit;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 14px 28px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.app-metric-tile:hover {
    transform: translateY(-2px);
    border-color: rgba(10, 132, 255, 0.22);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
}

.app-metric-value {
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 800;
}

.app-metric--blue {
    color: #0a84ff;
}

.app-metric--green {
    color: #16a34a;
}

.app-metric--cyan {
    color: #0891b2;
}

.app-metric--amber {
    color: #d97706;
}

.app-tile,
.condo-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 24px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 18px 30px rgba(15, 23, 42, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.app-tile {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 0.85rem;
    padding: 0.95rem 1rem;
    text-decoration: none;
    color: inherit;
}

.app-tile:hover,
.condo-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(15, 23, 42, 0.12);
    border-color: rgba(10, 132, 255, 0.2);
}

.app-tile-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(180deg, #4da3ff 0%, #0a84ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.15rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 14px 22px rgba(10, 132, 255, 0.22);
}

.app-tile-text-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--app-text);
}

.app-tile-text-sub,
.condo-card-meta {
    font-size: 0.82rem;
    color: var(--app-text-soft);
}

.app-tile-chevron {
    margin-left: auto;
    color: var(--app-text-muted);
}

.condo-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.95rem;
}

.condo-card {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.05rem;
    text-decoration: none;
    color: inherit;
}

.condo-card-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
}

.condo-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--app-text);
}

.condo-card-code {
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: rgba(10, 132, 255, 0.1);
    color: var(--app-primary-strong);
    font-size: 0.72rem;
    font-weight: 800;
}

.app-fab {
    position: fixed;
    right: 1.1rem;
    bottom: 1.25rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 0;
    background: linear-gradient(180deg, #34c759 0%, #16a34a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(22, 163, 74, 0.3);
    z-index: 50;
}

.alert {
    max-width: var(--app-content-max);
    margin: 1rem auto 0;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 20px;
    box-shadow: var(--app-shadow-soft);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.app-flash-wrap {
    position: sticky;
    top: 84px;
    z-index: 1040;
    padding: 0 1rem;
}

.app-flash-alert {
    margin-top: 0.9rem;
    font-weight: 700;
}

.card {
    overflow: hidden;
}

.card-body {
    padding: clamp(1rem, 2vw, 1.45rem);
}

.list-group-item {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(15, 23, 42, 0.05);
}

.table-responsive {
    overflow: hidden;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table {
    margin-bottom: 0;
    color: var(--app-text);
    table-layout: auto;
}

.table > :not(caption) > * > * {
    padding: 0.95rem 1rem;
    vertical-align: middle;
    border-bottom-color: rgba(15, 23, 42, 0.06);
}

.table thead th {
    background: rgba(248, 250, 252, 0.92);
    color: #334155;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.table td,
.table th {
    overflow-wrap: break-word;
    word-break: normal;
}

.form-label {
    font-weight: 700;
    color: #0f172a;
}

.form-control,
.form-select {
    min-height: 48px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: rgba(255, 255, 255, 0.88);
    color: var(--app-text);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 0.85rem 0.95rem;
}

textarea.form-control {
    min-height: 120px;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(10, 132, 255, 0.45);
    box-shadow: 0 0 0 0.24rem rgba(10, 132, 255, 0.15);
    background: #ffffff;
}

.btn {
    min-height: 46px;
    border-radius: 999px;
    padding: 0.78rem 1.2rem;
    font-weight: 700;
    border-width: 1px;
    box-shadow: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

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

.btn:focus-visible {
    box-shadow: 0 0 0 0.24rem rgba(10, 132, 255, 0.16);
}

.btn-primary,
.btn-success {
    border-color: transparent;
    color: #ffffff;
}

.btn-primary {
    background: linear-gradient(180deg, #34a0ff 0%, #0a84ff 100%);
    box-shadow: 0 16px 28px rgba(10, 132, 255, 0.22);
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    background: linear-gradient(180deg, #2e96ef 0%, #0072df 100%);
}

.btn-success {
    background: linear-gradient(180deg, #37d366 0%, #16a34a 100%);
    box-shadow: 0 16px 28px rgba(22, 163, 74, 0.2);
}

.btn-outline-primary,
.btn-outline-secondary,
.btn-outline-dark,
.btn-light {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.btn-outline-primary {
    color: var(--app-primary-strong);
    border-color: rgba(10, 132, 255, 0.2);
}

.btn-outline-secondary,
.btn-outline-dark {
    color: #334155;
    border-color: rgba(15, 23, 42, 0.12);
}

.feature-link-locked {
    position: relative;
    border-style: dashed;
}

.feature-lock-hint {
    width: 100%;
    color: #92400e;
    font-size: 0.86rem;
    font-weight: 700;
}

.pagination {
    gap: 0.35rem;
    flex-wrap: wrap;
}

.page-link {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    color: #334155;
    min-width: 42px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.86);
}

.page-item.active .page-link {
    background: linear-gradient(180deg, #34a0ff 0%, #0a84ff 100%);
    border-color: transparent;
}

.modal-content {
    overflow: hidden;
}

.app-footer {
    padding: 0 1rem 1.8rem;
}

.app-footer__inner {
    max-width: var(--app-content-max);
    margin: 0 auto;
    text-align: center;
    color: var(--app-text-muted);
    font-size: 0.94rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.app-footer__inner a {
    color: inherit;
    font-weight: 700;
    text-decoration: none;
}

.right-menu + *,
.app-topbar + * {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

@media (max-width: 991.98px) {
    .app-flash-wrap {
        top: 78px;
        padding: 0 0.85rem;
    }

    .mobile-app-shell {
        padding: 1rem 0.85rem 1.45rem;
    }

    .top-app-bar {
        padding: 0.85rem 0.95rem;
    }
}

@media (max-width: 767.98px) {
    .app-flash-wrap {
        top: 96px;
        padding-inline: 0.7rem;
    }

    html {
        font-size: 15px;
    }

    .top-app-bar {
        display: flex;
        align-items: center;
        gap: 0.65rem;
        padding: 0.72rem 0.7rem;
    }

    .top-app-bar-left {
        flex: 1 1 auto;
        min-width: 0;
        gap: 0.55rem;
    }

    .top-app-bar-logo {
        width: 96px;
        height: 42px;
        flex-basis: 96px;
        border-radius: 12px;
        padding: 0.3rem 0.45rem;
    }

    .top-app-bar > div:last-child {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 0.4rem;
    }

    .top-app-bar-title {
        font-size: 0.92rem;
        max-width: 36vw;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .top-app-bar-sub {
        max-width: 36vw;
        white-space: nowrap;
        font-size: 0.74rem;
    }

    .top-app-bar-logout {
        min-height: 42px;
        padding: 0.62rem 0.78rem;
        font-size: 0.78rem;
    }

    .top-app-bar-logout i {
        margin-right: 0 !important;
    }

    .mobile-app-shell {
        padding-inline: 0.7rem;
    }

    .app-screen {
        border-radius: 22px;
        padding: 0.85rem;
    }

    .app-screen-title.d-flex {
        flex-direction: column;
        align-items: stretch !important;
    }

    .app-page-header,
    .app-toolbar,
    .app-page-header__actions,
    .app-toolbar__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .app-card,
    .card-body {
        padding: 1rem;
    }

    .condo-card-grid,
    .app-metric-grid {
        grid-template-columns: 1fr;
    }

    .table > :not(caption) > * > * {
        padding: 0.8rem 0.75rem;
    }

    .table-responsive.responsive-card-wrap {
        overflow: visible;
        border-radius: 20px;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .table-responsive.responsive-card-wrap table.responsive-card-table,
    .table-responsive.responsive-card-wrap.responsive-card-table table {
        border-collapse: separate;
        border-spacing: 0 0.75rem;
    }

    .table-responsive.responsive-card-wrap table.responsive-card-table thead,
    .table-responsive.responsive-card-wrap.responsive-card-table table thead {
        display: none;
    }

    .table-responsive.responsive-card-wrap table.responsive-card-table tbody,
    .table-responsive.responsive-card-wrap table.responsive-card-table tr,
    .table-responsive.responsive-card-wrap table.responsive-card-table td,
    .table-responsive.responsive-card-wrap.responsive-card-table table tbody,
    .table-responsive.responsive-card-wrap.responsive-card-table table tr,
    .table-responsive.responsive-card-wrap.responsive-card-table table td {
        display: block;
        width: 100%;
    }

    .table-responsive.responsive-card-wrap table.responsive-card-table tr,
    .table-responsive.responsive-card-wrap.responsive-card-table table tr {
        margin-bottom: 0.8rem;
        border: 1px solid rgba(15, 23, 42, 0.08);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.94);
        box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
        overflow: hidden;
    }

    .table-responsive.responsive-card-wrap table.responsive-card-table td,
    .table-responsive.responsive-card-wrap.responsive-card-table table td {
        border: 0;
        padding: 0.75rem 0.9rem;
    }

    .table-responsive.responsive-card-wrap table.responsive-card-table td + td,
    .table-responsive.responsive-card-wrap.responsive-card-table table td + td {
        border-top: 1px solid rgba(15, 23, 42, 0.06);
    }

    .table-responsive.responsive-card-wrap table.responsive-card-table td[data-label]::before,
    .table-responsive.responsive-card-wrap.responsive-card-table table td[data-label]::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 0.22rem;
        color: #64748b;
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    .table-responsive.responsive-card-wrap table.responsive-card-table td.text-end,
    .table-responsive.responsive-card-wrap.responsive-card-table table td.text-end {
        text-align: left !important;
    }

    .table-responsive.responsive-card-wrap table.responsive-card-table .btn-group,
    .table-responsive.responsive-card-wrap.responsive-card-table table .btn-group {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.45rem;
    }

    .table-responsive.responsive-card-wrap table.responsive-card-table .btn-group .btn,
    .table-responsive.responsive-card-wrap.responsive-card-table table .btn-group .btn {
        width: 100%;
        border-radius: 999px !important;
    }

    .table-responsive.responsive-card-wrap table.responsive-card-table .mobile-hide,
    .table-responsive.responsive-card-wrap.responsive-card-table table .mobile-hide {
        display: none !important;
    }

    .user-list-table td[data-label="Email"] {
        font-size: 0.95rem;
        line-height: 1.35;
    }

    .user-list-table td[data-label="Nombre"] a {
        display: inline-block;
        font-size: 1.02rem;
        line-height: 1.3;
        overflow-wrap: break-word;
        word-break: normal;
    }

    .user-list-table td[data-label="Filial"],
    .user-list-table td[data-label="Coeficiente"] {
        font-size: 0.96rem;
    }

    .form-control,
    .form-select {
        width: 100%;
    }

    .app-page-header__actions .btn,
    .app-toolbar__actions .btn,
    .app-page-header__actions .badge,
    .app-toolbar__actions .badge {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 479.98px) {
    .top-app-bar-menu-btn {
        width: 40px;
        height: 40px;
    }

    .top-app-bar-logo {
        width: 74px;
        height: 40px;
        flex-basis: 74px;
    }

    .app-footer {
        padding-inline: 0.7rem;
    }

    .top-app-bar-title {
        max-width: 26vw;
    }

    .top-app-bar-sub {
        max-width: 26vw;
    }

    .top-app-bar-logout {
        padding-inline: 0.65rem;
    }

    .top-app-bar-logout span,
    .top-app-bar-logout .top-app-bar-logout-text {
        display: none;
    }
}
