body {
    background: linear-gradient(135deg, #f8fbff, #eef3ff);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #1f2933;
}

.card {
    border-radius: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #4f8af7, #697dfb);
    border: none;
    box-shadow: 0 0.5rem 1.25rem rgba(79, 138, 247, 0.25);
}

.btn-primary:hover {
    filter: brightness(0.95);
}

.btn-outline-secondary {
    border-radius: 999px;
}

.app-shell {
    position: relative;
}

.app-sidebar {
    width: 260px;
    background: linear-gradient(180deg, #0f4c81 0%, #142d4c 100%);
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1030;
    min-height: 100vh;
    transition: transform 0.3s ease;
}

.app-sidebar__brand {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.app-sidebar__icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    font-size: 1.25rem;
}

.app-sidebar__nav {
    margin-top: 0.5rem;
}

.app-sidebar__link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    margin: 0.25rem 0;
    border-radius: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.app-sidebar__link-icon {
    width: 1.1rem;
    height: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.app-sidebar__link-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

@media (min-width: 992px) {
    .app-sidebar__nav .app-sidebar__link {
        padding: 0.55rem 0.85rem;
        margin: 0.15rem 0;
        gap: 0.55rem;
        font-size: 0.92rem;
        border-radius: 0.6rem;
    }

    .app-sidebar__link-icon {
        width: 0.95rem;
        height: 0.95rem;
    }
}

.app-sidebar__link:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    transform: translateX(4px);
}

.app-sidebar__link.active {
    background: #fff;
    color: #0f4c81;
    box-shadow: 0 0.75rem 2rem rgba(15, 76, 129, 0.3);
}

.app-sidebar__link.disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.app-sidebar__footer {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.app-topbar {
    min-height: 64px;
    position: sticky;
    top: 0;
    z-index: 1020;
}

.app-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    box-shadow: 0 0.4rem 1rem rgba(79, 138, 247, 0.4);
}

.dashboard-wrapper {
    animation: fade-in 0.4s ease;
}

.dashboard-hero__image {
    max-width: 320px;
}

.clientes-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fade-in 0.4s ease;
}

.clientes-wrapper .card {
    border-radius: 1rem;
}

.clientes-wrapper .table thead th {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6b7280;
}

.clientes-wrapper .table tbody td {
    vertical-align: middle;
}

.entradas-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fade-in 0.4s ease;
}

.entradas-wrapper .card {
    border-radius: 1rem;
}

.entradas-wrapper .progress {
    height: 0.75rem;
    border-radius: 999px;
    background: rgba(15, 76, 129, 0.08);
}

.entradas-wrapper .progress-bar {
    border-radius: 999px;
}

.ticket-qr img {
    max-width: 200px;
}

.habitaciones-wrapper {
    animation: fade-in 0.4s ease;
}

.habitaciones-wrapper .row.g-4 {
    margin-left: 0;
    margin-right: 0;
    gap: 2rem 1.75rem;
}

.habitaciones-wrapper .habitacion-card {
    height: 100%;
}

.habitacion-card {
    border-radius: 1.25rem;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 1.25rem 2.5rem rgba(15, 76, 129, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.habitacion-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(15, 76, 129, 0.08);
}

.habitacion-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 1.5rem 3rem rgba(15, 76, 129, 0.18);
}

.habitacion-card__media {
    position: relative;
    min-height: 190px;
    background: linear-gradient(135deg, rgba(79, 138, 247, 0.18), rgba(20, 45, 76, 0.35));
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.25rem;
    border-bottom: 1px solid rgba(15, 76, 129, 0.08);
    overflow: hidden;
}

.habitacion-card__media.has-image {
    background-size: cover;
    background-position: center;
}

.habitacion-card__media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.65) 100%);
    opacity: 0.88;
    transition: opacity 0.3s ease;
}

.habitacion-card__media.has-image::before {
    opacity: 0.65;
}

.habitacion-card:hover .habitacion-card__media::before {
    opacity: 0.5;
}

.habitacion-card__state,
.habitacion-card__price {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 1rem;
    padding: 0.45rem 0.95rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.22);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.habitacion-card__state {
    color: #fff;
    text-shadow: 0 2px 10px rgba(15, 23, 42, 0.45);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(30, 64, 175, 0.72));
}

.habitacion-card__state--disponible {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.92), rgba(22, 163, 74, 0.92));
    border-color: rgba(74, 222, 128, 0.45);
}

.habitacion-card__state--ocupada {
    background: linear-gradient(135deg, rgba(248, 113, 113, 0.95), rgba(239, 68, 68, 0.95));
    border-color: rgba(248, 113, 113, 0.45);
}

.habitacion-card__state--mantenimiento {
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.95), rgba(234, 179, 8, 0.95));
    border-color: rgba(251, 191, 36, 0.45);
    color: #1f2937;
    text-shadow: none;
}

.habitacion-card__state--bloqueada {
    background: linear-gradient(135deg, rgba(148, 163, 184, 0.9), rgba(100, 116, 139, 0.9));
    border-color: rgba(148, 163, 184, 0.4);
}

.habitacion-card__price {
    background: linear-gradient(135deg, rgba(240, 253, 244, 0.92), rgba(187, 247, 208, 0.85));
    color: #14532d;
    box-shadow: 0 10px 26px rgba(34, 197, 94, 0.24);
    border-color: rgba(34, 197, 94, 0.32);
}

.habitacion-preview {
    position: relative;
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, rgba(241, 245, 249, 0.9), rgba(226, 232, 240, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.25rem;
    margin: 0 auto;
    box-shadow: inset 0 0 0 1px rgba(100, 116, 139, 0.2), 0 18px 32px rgba(15, 23, 42, 0.16);
    overflow: hidden;
}

.habitacion-preview::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.08), rgba(59, 130, 246, 0.08));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.habitacion-preview:hover::after {
    opacity: 1;
}

.habitacion-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.habitacion-preview:hover img {
    transform: scale(1.05);
}

.habitacion-preview__placeholder {
    text-align: center;
    color: #475569;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.habitacion-preview__placeholder i {
    font-size: 2.4rem;
    opacity: 0.55;
}

.habitacion-preview__badge {
    position: absolute;
    bottom: 0.9rem;
    right: 0.9rem;
    background: rgba(15, 23, 42, 0.82);
    color: #e2e8f0;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.28);
}

.habitacion-card__body {
    padding: 1.75rem;
    gap: 0.75rem;
}

.habitacion-card__title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #111827;
}

.habitacion-card__code {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

.habitacion-card__capacity {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(79, 138, 247, 0.12);
    color: #2c5282;
    font-weight: 600;
}

.habitacion-card__type {
    font-weight: 500;
    letter-spacing: 0.01em;
}

.habitacion-card__description {
    color: #4b5563;
    line-height: 1.45;
}

.habitacion-card__services-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.habitacion-card__services .badge {
    border-radius: 999px;
    background: rgba(15, 76, 129, 0.08);
    color: #0f4c81;
    font-weight: 600;
    padding: 0.4rem 0.75rem;
}

.habitacion-card__footer .btn {
    border-radius: 999px;
    font-weight: 600;
    padding: 0.75rem 1rem;
}

.habitacion-card__actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: space-between;
}

.habitacion-card__actions form {
    margin: 0;
}

.btn-gradient {
    background: linear-gradient(135deg, #4f46e5, #0ea5e9);
    border: none;
    color: #fff;
    box-shadow: 0 0.9rem 2.2rem rgba(14, 165, 233, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 1.1rem 2.4rem rgba(79, 70, 229, 0.35);
    filter: brightness(1.02);
}

.servicios-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fade-in 0.4s ease;
}

.servicios-wrapper .card {
    border-radius: 1rem;
}

.servicio-thumb {
    width: 60px;
    height: 60px;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #eef2ff;
}

.servicio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.servicio-thumb--preview {
    width: 100%;
    max-width: 140px;
    height: 100px;
}

.servicio-cover {
    background: linear-gradient(135deg, rgba(15, 76, 129, 0.15), rgba(79, 138, 247, 0.15));
    overflow: hidden;
}

.servicio-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.servicio-info {
    background: rgba(244, 247, 254, 0.6);
    border-radius: 0.85rem;
    padding: 0.85rem 1rem;
}

.catalogo-wrapper .card + .card {
    margin-top: 1.5rem;
}

.catalogo-wrapper .table td {
    vertical-align: middle;
}

.restaurante-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: fade-in 0.4s ease;
}

@media (max-width: 576px) {
    .restaurante-wrapper .d-flex.flex-column.flex-lg-row {
        gap: 1rem;
    }

    .restaurante-wrapper .btn-group {
        flex-wrap: wrap;
        width: 100%;
        gap: 0.5rem;
    }

    .restaurante-wrapper .btn-group .btn {
        flex: 1 1 calc(50% - 0.5rem);
        font-size: 0.9rem;
    }

    .restaurante-wrapper .card .card-img-top {
        max-height: 140px;
    }

    .restaurante-wrapper .row.g-3 > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .restaurante-producto .card-body {
        padding: 1rem;
    }

    .restaurante-producto .btn-group {
        width: 100%;
        justify-content: space-between;
    }
}

.restaurante-stat {
    border-radius: 1rem;
}

.restaurante-producto .card-img-top {
    display: block;
    width: 100%;
    max-height: 180px;
    object-fit: contain;
    background: #f8fafc;
    padding: 0.75rem;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.restaurante-stock {
    font-weight: 600;
}

.restaurante-stock--suficiente {
    color: #198754;
}

.restaurante-stock--bajo {
    color: #f59e0b;
}

.restaurante-stock--agotado {
    color: #dc3545;
}

.restaurante-thumb {
    width: 120px;
    height: 90px;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #f8fafc;
}

.restaurante-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.restaurante-ventas-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.restaurante-venta-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(248, 250, 252, 0.7);
    border-radius: 0.85rem;
    padding: 0.85rem 1rem;
}

.restaurante-item {
    border-radius: 1rem;
}

.restaurante-total {
    font-size: 1.1rem;
    font-weight: 600;
}

.restaurante-ticket {
    max-width: 480px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 1.25rem;
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.1);
    padding: 2rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.restaurante-ticket__header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.restaurante-ticket__meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.restaurante-ticket__table thead th {
    border-bottom-width: 2px;
}

.restaurante-reporte-grafico .progress {
    height: 0.75rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.1);
}
.dashboard-stat__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dashboard-chart__placeholder {
    min-height: 220px;
    border: 1px dashed rgba(15, 76, 129, 0.2);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(79, 138, 247, 0.04);
}

.activity-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.timeline {
    position: relative;
    padding-left: 1.5rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: rgba(15, 76, 129, 0.15);
}

.timeline-item {
    position: relative;
    margin-bottom: 1.5rem;
}

.timeline-marker {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: absolute;
    left: -18px;
    top: 6px;
    box-shadow: 0 6px 12px rgba(15, 76, 129, 0.2);
}

.timeline-content {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 0.85rem 1rem;
    box-shadow: 0 0.25rem 0.8rem rgba(17, 24, 39, 0.08);
}

.timeline-time {
    font-size: 0.75rem;
}

.auth-shell {
    min-height: 100vh;
    background: #0f4c81 url('../img/login.png') center center / cover no-repeat;
    display: flex;
    overflow: hidden;
}

.auth-main {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.login-phone {
    position: relative;
    width: 100%;
    height: 100%;
}

.login-phone__screen {
    position: absolute;
    top: 50%;
    left: 31.5%;
    transform: translate(-50%, -50%);
    width: 265px;
    max-width: 80vw;
}

.login-phone__card {
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    box-shadow: 0 1.5rem 3rem rgba(15, 76, 129, 0.25);
    min-height: 610px;
}

.login-toggle-icon svg {
    width: 1.1rem;
    height: 1.1rem;
    display: block;
}

.login-logo {
    max-width: 120px;
    width: 60%;
    margin: 0 auto;
    display: block;
}

.login-phone__card .form-control,
.login-phone__card .btn {
    border-radius: 0.9rem;
}

.login-phone__card .form-control,
.login-phone__card .input-group-text {
    font-size: 0.85rem;
}

.login-phone__card .form-control::placeholder {
    font-size: 0.8rem;
}

.caja-wrapper .card,
.caja-form .card,
.caja-cierre .card,
.caja-reporte .card {
    border-radius: 1.25rem;
}

.caja-card {
    position: relative;
    overflow: hidden;
}

.caja-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.35), transparent 60%);
    opacity: 0.8;
}

.caja-card .card-body {
    position: relative;
    z-index: 1;
}

.caja-card .card-body h2 {
    color: #0f172a;
}

.caja-card .card-body p,
.caja-card .card-body small {
    color: #0f172a;
}

.caja-card--ingresos {
    background: linear-gradient(135deg, #22c55e, #15803d);
}

.caja-card--egresos {
    background: linear-gradient(135deg, #ef4444, #b91c1c);
}

.caja-card--balance {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.caja-metodos .list-group-item {
    border: none;
    border-radius: 1rem;
    margin-bottom: 0.35rem;
    background-color: rgba(148, 163, 184, 0.1);
}

.caja-form label,
.caja-cierre label,
.caja-reporte label {
    font-weight: 600;
}

.caja-form .btn,
.caja-cierre .btn,
.caja-reporte .btn {
    border-radius: 0.85rem;
}

.caja-wrapper table tbody tr td {
    vertical-align: middle;
}

.caja-wrapper .table-hover tbody tr:hover {
    background-color: rgba(14, 116, 144, 0.05);
}

.caja-wrapper .badge,
.caja-cierre .badge,
.caja-reporte .badge {
    border-radius: 999px;
    font-weight: 600;
}

.caja-cierre .card-title,
.caja-reporte .card-title,
.caja-form .card-title {
    font-weight: 600;
}

.caja-reporte select {
    border-radius: 0.85rem;
}

.caja-cierre form button {
    min-height: 46px;
}

.caja-wrapper .btn,
.caja-form .btn,
.caja-cierre .btn,
.caja-reporte .btn {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.caja-wrapper .btn:hover,
.caja-form .btn:hover,
.caja-cierre .btn:hover,
.caja-reporte .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.15);
}

.caja-wrapper .table td small,
.caja-cierre .table td small,
.caja-reporte .table td small {
    font-size: 0.75rem;
}

.caja-wrapper .alert,
.caja-form .alert,
.caja-cierre .alert,
.caja-reporte .alert {
    border-radius: 1rem;
}

.empleados-wrapper .card,
.empleados-form .card,
.empleados-asistencia .card,
.empleados-tareas .card,
.empleados-roles .card {
    border-radius: 1.25rem;
}

.empleados-summary-card h3 {
    color: #0f172a;
}

.empleados-summary-card p {
    color: #475569;
    font-size: 0.9rem;
}

.empleados-wrapper .badge,
.empleados-asistencia .badge,
.empleados-tareas .badge,
.empleados-roles .badge {
    border-radius: 999px;
    font-weight: 600;
}

.empleados-wrapper .table td small {
    font-size: 0.75rem;
}

.empleados-wrapper .btn,
.empleados-form .btn,
.empleados-asistencia .btn,
.empleados-tareas .btn,
.empleados-roles .btn {
    border-radius: 0.85rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.empleados-wrapper .btn:hover,
.empleados-form .btn:hover,
.empleados-asistencia .btn:hover,
.empleados-tareas .btn:hover,
.empleados-roles .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(15, 76, 129, 0.15);
}

.empleados-search input[type="search"] {
    border-radius: 999px;
}

.empleados-search .btn {
    border-radius: 999px;
}

.empleados-estado {
    padding: 0.35rem 0.75rem;
}

.empleados-estado--activo {
    box-shadow: inset 0 0 0 1px rgba(16, 185, 129, 0.15);
}

.empleados-estado--inactivo {
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.4);
}

.empleados-tips li {
    margin-bottom: 0.35rem;
}

.empleados-asistencia table td,
.empleados-tareas table td {
    vertical-align: middle;
}

.empleados-tarea-row--success {
    background-color: rgba(34, 197, 94, 0.08);
}

.empleados-tarea-row--warning {
    background-color: rgba(251, 191, 36, 0.12);
}

.empleados-tareas textarea,
.empleados-form textarea {
    border-radius: 1rem;
}

.empleados-roles .btn-group .btn[disabled] {
    opacity: 0.45;
}

.empleados-roles .btn-group .btn {
    border-radius: 999px;
}

.empleados-roles .card.bg-primary {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
}

@media (max-width: 768px) {
    .login-phone__screen {
        left: 50%;
        width: min(320px, 90vw);
    }

    .auth-shell {
        background-position: right center;
    }
}

.auth-main .card {
    border-radius: 1.5rem;
    box-shadow: 0 1.5rem 3rem rgba(15, 76, 129, 0.15);
}

.auth-footer {
    margin-top: auto;
}

.app-footer {
    border-top: 1px solid rgba(15, 76, 129, 0.08) !important;
    background: rgba(255, 255, 255, 0.95) !important;
}

.app-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.app-sidebar-open .app-sidebar-overlay {
    opacity: 1;
    visibility: visible;
}

.app-sidebar-open .app-sidebar__footer {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.app-wrapper {
    margin-left: 260px;
}

@media (max-width: 991.98px) {
    .app-wrapper {
        margin-left: 0;
    }

    .app-sidebar {
        transform: translateX(-100%);
    }

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

    .app-sidebar-overlay {
        display: block;
    }
}

@media (max-width: 575.98px) {
    .app-sidebar__brand {
        padding: 1rem 1.25rem !important;
    }

    .app-sidebar__icon {
        width: 36px;
        height: 36px;
    }

    .app-sidebar__nav {
        margin-top: 0.25rem;
        padding-bottom: 0.75rem;
    }

    .app-sidebar__link {
        padding: 0.6rem 0.85rem;
        margin: 0.15rem 0;
        font-size: 0.9rem;
    }

    .app-sidebar__footer {
        padding: 0.75rem 1.25rem;
        font-size: 0.75rem;
    }

    .dashboard-stat__icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .card {
        border-radius: 1rem;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-marker {
        left: -20px;
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
