/* ====== LAYOUT BÁSICO ====== */
.page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main {
    flex: 1;
}

/* ====== SIDEBAR (DESKTOP) ====== */
.sidebar {
    width: 250px;
    min-height: 100vh;
    background-color: #f8f9fa;
    border-right: 1px solid #dee2e6;
}

.sidebar .nav-link {
    color: #333;
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
    margin: 0.125rem 0;
}

.sidebar .nav-link:hover {
    background-color: #e9ecef;
}

.sidebar .nav-link.active {
    background-color: #0d6efd;
    color: white !important;
}

/* ====== MENÚ MÓVIL ====== */
.offcanvas {
    width: 280px !important;
}

.offcanvas .nav-link {
    color: #333;
    padding: 1rem 1.5rem;
    font-size: 1.05rem;
    border-bottom: 1px solid #f0f0f0;
}

.offcanvas .nav-link.active {
    background-color: #0d6efd;
    color: white !important;
}

/* ====== ERROR UI ====== */
#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}


/* Resaltar el enlace de Inicio en el menú */
.nav-menu .nav-link.border-start {
    background-color: rgba(13, 110, 253, 0.05);
    transition: all 0.2s;
}

.nav-menu .nav-link.border-start:hover {
    background-color: rgba(13, 110, 253, 0.1);
    border-left-width: 4px !important;
}

.nav-menu .nav-link.border-start.active {
    background-color: rgba(13, 110, 253, 0.15);
}