/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-kc989pta5g] {
    position: relative;
    display: flex;
    flex-direction: column;
}
.page-content[b-kc989pta5g] {
    /*padding-bottom: 90px;*/ /* evita que el dock tape contenido */
}
main[b-kc989pta5g] {
    flex: 1;
    padding-bottom: 100px; /* espacio para el BottomDock */
}

.page[b-kc989pta5g], .content[b-kc989pta5g], .main[b-kc989pta5g], .container[b-kc989pta5g], body[b-kc989pta5g] {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 0 !important;
}

.page-content .card.blue[b-kc989pta5g] {
    margin-left: 5px;
    margin-right: 5px;
    margin-top: 5px;
}

main[b-kc989pta5g] {
    flex: 1;
}

.sidebar[b-kc989pta5g] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-kc989pta5g] {
    /*background-color: #f7f7f7;*/
    background-color: #000080;
    border-bottom: 1px solid #d6d5d5;
    /*justify-content: flex-end;*/
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-kc989pta5g]  a, .top-row[b-kc989pta5g]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-kc989pta5g]  a:hover, .top-row[b-kc989pta5g]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-kc989pta5g]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

.top-row[b-kc989pta5g] {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

/* Columna vertical */
.left-links[b-kc989pta5g] {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    order: 2; /* Ahora va a la derecha */
    color: white;
}

/* Enlace individual */
.right-link[b-kc989pta5g] {
    order: 1; /* Ahora va a la izquierda */
    color: white;
}



    .top-row .card[b-kc989pta5g] {
        flex: 1;
        height: 100%;
    }


.card[b-kc989pta5g] {
    border-radius: 8px;
    padding: 10px;
    margin: 10px 0;
    box-shadow: 2px 3px 5px rgba(0,0,0,0.3);
}

.blue[b-kc989pta5g] {
    background-color: #000080;
    color: white;
}

.white[b-kc989pta5g] {
    background-color: white;
}

.white-smoke[b-kc989pta5g] {
    background-color: whitesmoke;
}

.user-grid[b-kc989pta5g] {
    display: grid;
    /*grid-template-columns: 60px auto;*/
    grid-template-columns: 60px 1fr auto; /* 3 columnas */
    align-items: center;
    gap: 0; /* IMPORTANTE */
}

.user-info[b-kc989pta5g] {
    width: 100%;
    min-width: 0; /* IMPORTANTE en CSS Grid */
    margin: 0;
    padding: 0;
}

.btn-salir[b-kc989pta5g] {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bi-power-btn[b-kc989pta5g] {
    width: 36px; /* círculo más grande */
    height: 36px;
    display: inline-block;
    background-color: white; /* círculo blanco */
    border-radius: 50%; /* forma circular */
    background-size: 80%; /* tamaño del icono dentro del círculo */
    background-repeat: no-repeat;
    background-position: center;
    /* Icono power rojo (#ff3b30 estilo iOS) */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ff3b30' viewBox='0 0 16 16'%3E%3Cpath d='M7.5 1v7h1V1h-1z'/%3E%3Cpath d='M3.5 4.437a5 5 0 1 0 9 0l-.866.5a4 4 0 1 1-7.268 0l-.866-.5z'/%3E%3C/svg%3E");
}

/* Contenedor principal del bloque fecha */
.fecha-row[b-kc989pta5g] {
    display: flex;
    flex-direction: row; /* todo en horizontal */
    align-items: center; /* alineación vertical perfecta */
    justify-content: space-between;
    gap: 10px;
}

.user-icon[b-kc989pta5g] {
    width: 40px;
    height: 40px;
    margin: 0; /* por si acaso */
    padding: 0;
}

/* La fecha ocupa todo el espacio central */
.fecha-grid[b-kc989pta5g] {
    flex: 1; /* ocupa todo el espacio disponible */
    display: flex;
    align-items: center;
    margin-left: 8px; /* separación mínima del icono */
}

.user-name[b-kc989pta5g], .user-dni[b-kc989pta5g] {
    font-size: 14px;
}



@media (max-width: 640.98px) {
    .top-row[b-kc989pta5g] {
        justify-content: space-between;
    }

    .top-row[b-kc989pta5g]  a, .top-row[b-kc989pta5g]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-kc989pta5g] {
        flex-direction: row;
    }

    .sidebar[b-kc989pta5g] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-kc989pta5g] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-kc989pta5g]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-kc989pta5g], article[b-kc989pta5g] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}


.down-row[b-kc989pta5g] {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: white;
    padding: 0;
    margin: 0;
    border-top: 1px solid #ccc;
    overflow: hidden; /* evita que nada sobresalga */
}

    .down-row .card[b-kc989pta5g] {
        width: 100%;
        max-width: 100%; /* impide que crezca más del ancho */
        box-sizing: border-box; /* incluye padding dentro del ancho */
        padding: 10px;
    }


.bottom-dock[b-kc989pta5g] {
    width: 100%;
    display: flex;
    justify-content: center; /* centra todo el bloque */
    margin-top: 10px;
}

.menu-grid[b-kc989pta5g] {
    display: flex;
    justify-content: center; /* centra los botones */
    align-items: center;
    gap: 20px; /* separación uniforme entre botones */
}

.menu-btn[b-kc989pta5g] {
    width: 50px;
    height: 50px;
    background-size: cover;
    background-position: center;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

/* El reloj se pega totalmente a la derecha */
.nav-clock-container[b-kc989pta5g] {
    margin-left: auto; /* empuja el reloj al extremo derecho */
    display: flex;
    align-items: center;
}

.logo2[b-kc989pta5g] {
    width: 32px;
    height: 32px;
}




/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-iqpjrornlq] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-iqpjrornlq] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-iqpjrornlq] {
    font-size: 1.2rem;
    font-weight: 500;
    /*color: #ff9500;  color llamativo */
}

/* Contenedor principal del nav */
.nav-header[b-iqpjrornlq] {
    display: flex;
    align-items: center;
    justify-content: space-between; /* izquierda ↔ derecha */
    width: 100%;
}

/* Logo + texto juntos */
.brand-row[b-iqpjrornlq] {
    display: flex;
    align-items: center;
    gap: 6px; /* separación mínima */
}

/* Tamaño del logo */
.logo2[b-iqpjrornlq] {
    width: 40px;
    height: 40px;
}

/* Texto HinHout */
.navbar-brand[b-iqpjrornlq] {
    margin: 0;
    padding: 0;
    color: white;
}


/* ICONOS PERSONALIZADOS */
.bi[b-iqpjrornlq] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

/* ICONOS SVG EMBEBIDOS */
.bi-calendar-fill-nav-menu[b-iqpjrornlq] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-calendar-fill' viewBox='0 0 16 16'%3E%3Cpath d='M4 .5a.5.5 0 0 1 .5.5V2h6V1a.5.5 0 0 1 1 0V2h1A2 2 0 0 1 15 4v1H1V4a2 2 0 0 1 2-2h1V1a.5.5 0 0 1 .5-.5z'/%3E%3Cpath d='M1 6h14v6a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2z'/%3E%3C/svg%3E");
}


.bi-house-door-fill-nav-menu[b-iqpjrornlq] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-iqpjrornlq] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-calendar' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-iqpjrornlq] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.bi-person-fill-nav-menu[b-iqpjrornlq] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-fill' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3Zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E");
}

.bi-power-nav-menu[b-iqpjrornlq] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-power' viewBox='0 0 16 16'%3E%3Cpath d='M7.5 1v7h1V1h-1z'/%3E%3Cpath d='M3.5 4.437a5 5 0 1 0 9 0l-.866.5a4 4 0 1 1-7.268 0l-.866-.5z'/%3E%3C/svg%3E");
}




/* NAV ITEMS */
.nav-item[b-iqpjrornlq] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-iqpjrornlq] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-iqpjrornlq] {
        padding-bottom: 1rem;
    }

    /* NAVLINK: ICONO + TEXTO ALINEADOS */
    .nav-item[b-iqpjrornlq]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        gap: 0.6rem; /* espacio icono-texto */
        line-height: 3rem;
    }

/* ICONOS */
.nav-icon[b-iqpjrornlq] {
    width: 1.25rem;
    height: 1.25rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* ACTIVE */
.nav-item[b-iqpjrornlq]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

/* HOVER */
.nav-item[b-iqpjrornlq]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

/* RESPONSIVE */
@media (min-width: 641px) {
    .navbar-toggler[b-iqpjrornlq] {
        display: none;
    }

    .collapse[b-iqpjrornlq] {
        display: block;
    }

    .nav-scrollable[b-iqpjrornlq] {
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/Home.razor.rz.scp.css */
.home-container[b-jtngwpdce8] {
    /**/padding: 5px;
}

/* ================================
   TAMAÑO GLOBAL PARA TODA LA APP
   ================================ */
html[b-jtngwpdce8] {
    /* Tamaño fluido entre 14px y 18px */
    font-size: clamp(14px, 2.5vw, 18px);
}

/* ================================
   AJUSTE PARA SMARTPHONES <= 480px
   ================================ */
@media (max-width: 480px) {
    html[b-jtngwpdce8] {
        /* Más compacto, pero fluido */
        font-size: clamp(13px, 3vw, 16px);
    }
}

/* ================================
   AJUSTE PARA SMARTPHONES PEQUEÑOS <= 360px
   ================================ */
@media (max-width: 360px) {
    html[b-jtngwpdce8] {
        /* Mínimo absoluto: 12px */
        font-size: 12px;
    }
}


.card[b-jtngwpdce8] {
    border-radius: 8px;
    padding: 10px;
    margin: 10px 0;
    box-shadow: 2px 3px 5px rgba(0,0,0,0.3);
}

.blue[b-jtngwpdce8] {
    background-color: #000080;
    color: white;
}

.white[b-jtngwpdce8] {
    background-color: white;
}

.white-smoke[b-jtngwpdce8] {
    background-color: whitesmoke;
}

.user-grid[b-jtngwpdce8] {
    display: grid;
    grid-template-columns: 60px auto;
    align-items: center;
}

.user-icon[b-jtngwpdce8] {
    width: 40px;
    height: 40px;
}

.user-name[b-jtngwpdce8], .user-dni[b-jtngwpdce8] {
    font-size: 14px;
}

.fecha-grid[b-jtngwpdce8] {
    display: grid;
    grid-template-columns: 70px auto;
    align-items: center;
}

.fecha-text[b-jtngwpdce8] {
    margin-left: 10px; /* separación respecto a la imagen */
    text-align: center; /* centra el texto dentro de su columna */
}


.logo2[b-jtngwpdce8] {
    width: 70px;
    height: 70px;
}

.spinner[b-jtngwpdce8] {
    margin: 20px auto;
    border: 4px solid #eee;
    border-top: 4px solid azure;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    animation: spin-b-jtngwpdce8 1s linear infinite;
}

@keyframes spin-b-jtngwpdce8 {
    100% {
        transform: rotate(360deg);
    }
}

.turno-card[b-jtngwpdce8] {
    background: whitesmoke;
    padding: 10px;
    margin: 5px 0;
    border-radius: 8px;
    box-shadow: 2px 3px 5px rgba(0,0,0,0.3);
}

.turno-buttons[b-jtngwpdce8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 5px;
    bottom: 10px;
    margin-bottom: 20px;
}

.left-btn[b-jtngwpdce8],
.right-btn[b-jtngwpdce8] {
    flex: 1; /* cada lado ocupa la mitad */
    display: flex;
}

.left-btn[b-jtngwpdce8] {
    justify-content: center; /* botón a la izquierda */
}

.right-btn[b-jtngwpdce8] {
    justify-content: center; /* botón a la derecha */
}

    .left-btn button[b-jtngwpdce8],
    .right-btn button[b-jtngwpdce8] {
        width: 100%;
        max-width: 160px; /* opcional, para que no sean gigantes */
    }

    .turno-buttons button[b-jtngwpdce8] {
        flex: 1;
        margin: 0 5px;
    }

/* --- BOTONES START / STOP ESTILO APP MÓVIL --- */

.btn-start[b-jtngwpdce8],
.btn-stop[b-jtngwpdce8] {
    width: 100%;
    max-width: 180px;
    padding: 12px 18px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    border: none;
    border-radius: 14px; /* redondeado estilo app */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* espacio entre icono y texto */
    /* transiciones suaves */
    transition: transform 0.15s ease, box-shadow 0.25s ease, opacity 0.25s ease, border 0.25s ease;
}

    /* --- ICONOS PLAY / STOP --- */

    .btn-start[b-jtngwpdce8]::before {
        content: "▶"; /* icono play */
        font-size: 18px;
    }

    .btn-stop[b-jtngwpdce8]::before {
        content: "■"; /* icono stop */
        font-size: 18px;
    }

/* --- COLORES CON DEGRADADO --- */

.btn-start[b-jtngwpdce8] {
    background: linear-gradient(135deg, #1e7a36, #2e9a48); /* tonos más oscuros */
}


.btn-stop[b-jtngwpdce8] {
    background: linear-gradient(135deg, #a63a36, #c94b47); /* rojo más apagado */
}
.btn-stop[b-jtngwpdce8] {
    box-shadow: 0 8px 20px rgba(50, 50, 50, 0.9) !important;
}
    .btn-stop.active[b-jtngwpdce8] {
        border: none !important;
        /*box-shadow: none !important;  si también quieres quitar el brillo blanco */
    }





.btn-start[b-jtngwpdce8],
.btn-stop[b-jtngwpdce8] {
    box-shadow: 0 10px 18px rgba(0,0,0,0.35), /* sombra principal fuerte */
    0 18px 32px rgba(0,0,0,0.25); /* sombra secundaria amplia */
}


    /* --- ANIMACIÓN AL PULSAR (efecto "tap") --- */

    .btn-start:active[b-jtngwpdce8],
    .btn-stop:active[b-jtngwpdce8] {
        transform: scale(0.90);
        box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    }

    /* --- BORDE LUMINOSO CUANDO ESTÁN ACTIVOS --- */

    .btn-start.active[b-jtngwpdce8],
    .btn-stop.active[b-jtngwpdce8] {
        border: 2px solid rgba(255,255,255,0.8);
        box-shadow: 0 0 12px rgba(255,255,255,0.7);
    }

/* --- ANIMACIÓN DE REBOTE AL APARECER --- */

.btn-start[b-jtngwpdce8],
.btn-stop[b-jtngwpdce8] {
    animation: bounceIn-b-jtngwpdce8 0.45s ease;
}

@keyframes bounceIn-b-jtngwpdce8 {
    0% {
        transform: scale(0.6);
        opacity: 0;
    }

    60% {
        transform: scale(1.15);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

/* --- APARICIÓN / DESAPARICIÓN SUAVE --- */

.btn-hidden[b-jtngwpdce8] {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
}



.turno-grid[b-jtngwpdce8] {
    display: grid;
    grid-template-columns: 80px 1fr; /* Izquierda fija, derecha flexible */
    gap: 10px;
    align-items: center; /* Centra verticalmente la columna izquierda */
}

.turno-hora[b-jtngwpdce8] {
    font-size: 1.4rem;
    font-weight: bold;
    text-align: left;
}

.turno-info[b-jtngwpdce8] {
    display: grid;
    grid-template-columns: auto 1fr;
    row-gap: 4px;
    column-gap: 8px;
    justify-content: center;
    text-align: center; /* centra texto */
}

.turno-info[b-jtngwpdce8] {
    justify-self: center;
}

.turno-label[b-jtngwpdce8] {
    font-weight: 600;
    color: #555;
    text-align: right; /* centra texto */
}

.turno-value[b-jtngwpdce8] {
    color: #333;
    text-align: left; /* centra texto */
}


/* Asignación de imágenes */
.menu-btn.reloj[b-jtngwpdce8] {
    background-image: url("img/clock.png");
}

.menu-btn.carpeta[b-jtngwpdce8] {
    background-image: url("img/carpeta1.png");
}

.menu-btn.calendario[b-jtngwpdce8] {
    background-image: url("img/calendar.png");
}

.menu-btn.usuario[b-jtngwpdce8] {
    background-image: url("img/user.png");
}

.menu-btn.cerrar[b-jtngwpdce8] {
    background-image: url("img/cerrar1.png");
}

/* Contenedor del dock */
/* CONTENEDOR DEL DOCK */
.bottom-dock[b-jtngwpdce8] {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 999;
    /* Estilo iOS moderno */
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 -4px 18px rgba(0,0,0,0.15);
}

    /* GRID DE ICONOS */
    .bottom-dock .menu-grid[b-jtngwpdce8] {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        gap: 12px;
    }

    /* BOTONES */
    .bottom-dock .menu-btn[b-jtngwpdce8] {
        width: 48px;
        height: 48px;
        border: none;
        border-radius: 14px;
        background-size: 60%;
        background-repeat: no-repeat;
        background-position: center;
        background-color: rgba(255,255,255,0.55);
        backdrop-filter: blur(6px);
        transition: transform 0.18s ease, background-color 0.25s ease, box-shadow 0.25s ease;
    }

        /* EFECTO HOVER (si se usa en escritorio) */
        .bottom-dock .menu-btn:hover[b-jtngwpdce8] {
            background-color: rgba(255,255,255,0.8);
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        }

        /* EFECTO ACTIVE (pulsación móvil) */
        .bottom-dock .menu-btn:active[b-jtngwpdce8] {
            transform: scale(0.82);
            background-color: rgba(255,255,255,0.95);
        }

/* ESTADO SELECCIONADO (si quieres marcar la página actual) */
.menu-btn.active[b-jtngwpdce8] {
    background-color: rgba(0,122,255,0.25);
    box-shadow: 0 0 12px rgba(0,122,255,0.35);
}


/* GRID PRINCIPAL: 2 COLUMNAS IGUALES */
.temp-grid[b-jtngwpdce8] {
    display: grid;
    grid-template-columns: 1fr 1fr; /* dos mitades iguales */
    align-items: center;
    text-align: center;
}

/* MITAD IZQUIERDA: elementos uno encima del otro */
.temp-left[b-jtngwpdce8] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* centrado horizontal */
    gap: 4px;
}

/* MITAD DERECHA: un solo elemento centrado */
.temp-right[b-jtngwpdce8] {
    display: flex;
    justify-content: center;
    align-items: center;
}

.temp-right[b-jtngwpdce8] {
    padding: 8px 12px;
    border-radius: 6px;
    transition: background-color .25s ease, color .25s ease;
}

/* Estado: Activo */
.color-activo[b-jtngwpdce8] {
    background-color: #4caf50; /* verde corporativo */
    color: white;
}

/* Estado: Inactivo */
.color-inactivo[b-jtngwpdce8] {
    background-color: #f44336; /* rojo serio */
    color: white;
}

/* Estado: Pausa */
.color-pausa[b-jtngwpdce8] {
    background-color: #ff9800; /* naranja suave */
    color: #222;
}

/* Estado por defecto */
.color-default[b-jtngwpdce8] {
    /*background-color: #e0e0e0;*/
    color: white;
}


/* ESTILOS DE TEXTO (opcional, por si quieres pulirlo) */
.temp-title[b-jtngwpdce8] {
    font-size: 14px;
    font-weight: bold;
}

.temp-value[b-jtngwpdce8] {
    font-size: 20px;
    font-weight: bold;
}

.temp-activo[b-jtngwpdce8] {
    font-size: 18px;
    font-weight: bold;
}




.progress-wrapper[b-jtngwpdce8] {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
}

.progress-bar[b-jtngwpdce8] {
    flex: 1;
    height: 14px;
    background: rgba(255, 255, 255, 0.15);
    /*background: red !important;*/
    border-radius: 8px;
    overflow: hidden;
}

.progress-fill[b-jtngwpdce8] {
    height: 100%;
    background-color: #0078ff;
    transition: width 0.3s ease-out;
    width: 0% !important; /* valor base */
}

/*.progress-fill {
    height: 100%;
    width: 0%;
    background-color: #0078ff;
    transition: width 0.3s ease-out;
}*/

.progress-label[b-jtngwpdce8] {
    width: 50px;
    text-align: right;
    font-size: 0.9rem;
    font-weight: 600;
    color: #00c6ff;
}

button:disabled[b-jtngwpdce8] {
    opacity: 0.5;
    pointer-events: none;
}


/* /Pages/ListaPage.razor.rz.scp.css */
.home-container[b-ogacz5eken] {
    /**/ padding: 5px;
}

/* ================================
   TAMAÑO GLOBAL PARA TODA LA APP
   ================================ */
html[b-ogacz5eken] {
    /* Tamaño fluido entre 14px y 18px */
    font-size: clamp(14px, 2.5vw, 18px);
}

/* ================================
   AJUSTE PARA SMARTPHONES <= 480px
   ================================ */
@media (max-width: 480px) {
    html[b-ogacz5eken] {
        /* Más compacto, pero fluido */
        font-size: clamp(13px, 3vw, 16px);
    }
}

/* ================================
   AJUSTE PARA SMARTPHONES PEQUEÑOS <= 360px
   ================================ */
@media (max-width: 360px) {
    html[b-ogacz5eken] {
        /* Mínimo absoluto: 12px */
        font-size: 12px;
    }
}


.card[b-ogacz5eken] {
    border-radius: 8px;
    padding: 10px;
    margin: 10px 0;
    box-shadow: 2px 3px 5px rgba(0,0,0,0.3);
}

.blue[b-ogacz5eken] {
    background-color: #000080;
    color: white;
}

.white[b-ogacz5eken] {
    background-color: white;
}

.white-smoke[b-ogacz5eken] {
    background-color: whitesmoke;
}

.user-grid[b-ogacz5eken] {
    display: grid;
    grid-template-columns: 60px auto;
    align-items: center;
}

.user-icon[b-ogacz5eken] {
    width: 40px;
    height: 40px;
}

.user-name[b-ogacz5eken], .user-dni[b-ogacz5eken] {
    font-size: 14px;
}

.fecha-grid[b-ogacz5eken] {
    display: grid;
    grid-template-columns: 70px auto;
    align-items: center;
}

.fecha-text[b-ogacz5eken] {
    margin-left: 10px; /* separación respecto a la imagen */
    text-align: center; /* centra el texto dentro de su columna */
}


.logo2[b-ogacz5eken] {
    width: 70px;
    height: 70px;
}

.spinner[b-ogacz5eken] {
    margin: 20px auto;
    border: 4px solid #eee;
    border-top: 4px solid azure;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    animation: spin-b-ogacz5eken 1s linear infinite;
}

@keyframes spin-b-ogacz5eken {
    100% {
        transform: rotate(360deg);
    }
}

.turno-card[b-ogacz5eken] {
    background: whitesmoke;
    padding: 10px;
    margin: 5px 0;
    border-radius: 8px;
    box-shadow: 2px 3px 5px rgba(0,0,0,0.3);
}

.turno-buttons[b-ogacz5eken] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 10px;
}

.left-btn[b-ogacz5eken],
.right-btn[b-ogacz5eken] {
    flex: 1; /* cada lado ocupa la mitad */
    display: flex;
}

.left-btn[b-ogacz5eken] {
    justify-content: center; /* botón a la izquierda */
}

.right-btn[b-ogacz5eken] {
    justify-content: center; /* botón a la derecha */
}

    .left-btn button[b-ogacz5eken],
    .right-btn button[b-ogacz5eken] {
        width: 100%;
        max-width: 160px; /* opcional, para que no sean gigantes */
    }

.turno-buttons button[b-ogacz5eken] {
    flex: 1;
    margin: 0 5px;
}

/* --- BOTONES START / STOP ESTILO APP MÓVIL --- */

.btn-start[b-ogacz5eken],
.btn-stop[b-ogacz5eken] {
    width: 100%;
    max-width: 180px;
    padding: 12px 18px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    border: none;
    border-radius: 14px; /* redondeado estilo app */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* espacio entre icono y texto */
    /* transiciones suaves */
    transition: transform 0.15s ease, box-shadow 0.25s ease, opacity 0.25s ease, border 0.25s ease;
}

    /* --- ICONOS PLAY / STOP --- */

    .btn-start[b-ogacz5eken]::before {
        content: "▶"; /* icono play */
        font-size: 18px;
    }

    .btn-stop[b-ogacz5eken]::before {
        content: "■"; /* icono stop */
        font-size: 18px;
    }

/* --- COLORES CON DEGRADADO --- */

.btn-start[b-ogacz5eken] {
    background: linear-gradient(135deg, #28a745, #34d058);
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.4);
}

.btn-stop[b-ogacz5eken] {
    background: linear-gradient(135deg, #d9534f, #ff6b6b);
    box-shadow: 0 4px 10px rgba(217, 83, 79, 0.4);
}

    /* --- ANIMACIÓN AL PULSAR (efecto "tap") --- */

    .btn-start:active[b-ogacz5eken],
    .btn-stop:active[b-ogacz5eken] {
        transform: scale(0.90);
        box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    }

    /* --- BORDE LUMINOSO CUANDO ESTÁN ACTIVOS --- */

    .btn-start.active[b-ogacz5eken],
    .btn-stop.active[b-ogacz5eken] {
        border: 2px solid rgba(255,255,255,0.8);
        box-shadow: 0 0 12px rgba(255,255,255,0.7);
    }

/* --- ANIMACIÓN DE REBOTE AL APARECER --- */

.btn-start[b-ogacz5eken],
.btn-stop[b-ogacz5eken] {
    animation: bounceIn-b-ogacz5eken 0.45s ease;
}

@keyframes bounceIn-b-ogacz5eken {
    0% {
        transform: scale(0.6);
        opacity: 0;
    }

    60% {
        transform: scale(1.15);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

/* --- APARICIÓN / DESAPARICIÓN SUAVE --- */

.btn-hidden[b-ogacz5eken] {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
}



.turno-grid[b-ogacz5eken] {
    display: grid;
    grid-template-columns: 80px 1fr; /* Izquierda fija, derecha flexible */
    gap: 10px;
    align-items: center; /* Centra verticalmente la columna izquierda */
}

.turno-hora[b-ogacz5eken] {
    font-size: 1.4rem;
    font-weight: bold;
    text-align: left;
}

.turno-info[b-ogacz5eken] {
    display: grid;
    grid-template-columns: auto 1fr;
    row-gap: 4px;
    column-gap: 8px;
    justify-content: center;
    text-align: center; /* centra texto */
}

.turno-info[b-ogacz5eken] {
    justify-self: center;
}

.turno-label[b-ogacz5eken] {
    font-weight: 600;
    color: #555;
    text-align: right; /* centra texto */
}

.turno-value[b-ogacz5eken] {
    color: #333;
    text-align: left; /* centra texto */
}


/* Asignación de imágenes */
.menu-btn.reloj[b-ogacz5eken] {
    background-image: url("img/clock.png");
}

.menu-btn.carpeta[b-ogacz5eken] {
    background-image: url("img/carpeta1.png");
}

.menu-btn.calendario[b-ogacz5eken] {
    background-image: url("img/calendar.png");
}

.menu-btn.usuario[b-ogacz5eken] {
    background-image: url("img/user.png");
}

.menu-btn.cerrar[b-ogacz5eken] {
    background-image: url("img/cerrar1.png");
}

/* Contenedor del dock */
.bottom-dock[b-ogacz5eken] {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95); /* estilo iOS */
    box-shadow: 0 -2px 8px rgba(0,0,0,0.2);
    padding: 8px 0;
    z-index: 999;
}

    /* Grid de iconos dentro del dock */
    .bottom-dock .menu-grid[b-ogacz5eken] {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(40px, 1fr));
        column-gap: 6px;
        justify-items: center;
    }

    /* Botones del dock */
    .bottom-dock .menu-btn[b-ogacz5eken] {
        width: 40px;
        height: 40px;
        border: none;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        background-color: transparent;
        padding: 0;
        transition: transform 0.2s ease;
    }

        /* Animación al pulsar */
        .bottom-dock .menu-btn:active[b-ogacz5eken] {
            transform: scale(0.85);
        }

/* GRID PRINCIPAL: 2 COLUMNAS IGUALES */
.temp-grid[b-ogacz5eken] {
    display: grid;
    grid-template-columns: 1fr 1fr; /* dos mitades iguales */
    align-items: center;
    text-align: center;
}

/* MITAD IZQUIERDA: elementos uno encima del otro */
.temp-left[b-ogacz5eken] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* centrado horizontal */
    gap: 4px;
}

/* MITAD DERECHA: un solo elemento centrado */
.temp-right[b-ogacz5eken] {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ESTILOS DE TEXTO (opcional, por si quieres pulirlo) */
.temp-title[b-ogacz5eken] {
    font-size: 14px;
    font-weight: bold;
}

.temp-value[b-ogacz5eken] {
    font-size: 20px;
    font-weight: bold;
}

.temp-activo[b-ogacz5eken] {
    font-size: 18px;
    font-weight: bold;
}

.select-elegante[b-ogacz5eken] {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid #d0d0d0;
    background: #fff;
    appearance: none;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Flecha estilo iOS/Material */
.select-elegante[b-ogacz5eken] {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 14px;
}

    /* Hover suave */
    .select-elegante:hover[b-ogacz5eken] {
        border-color: #999;
    }

    /* Focus estilo mobile */
    .select-elegante:focus[b-ogacz5eken] {
        outline: none;
        border-color: #4a90e2;
        box-shadow: 0 0 0 3px rgba(74,144,226,0.25);
    }

@media (max-width: 360px) {
    .card select[b-ogacz5eken] {
        font-size: 13px;
        padding: 6px 10px;
    }
}

.emoji-btn[b-ogacz5eken] {
    width: 45px;
    height: 45px;
    border: none;
    background-image: url("img/ojo.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    cursor: pointer;
}

.layout2-grid[b-ogacz5eken] {
    display: grid;
    grid-template-columns: 60px 1fr 1fr;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.btn-sort[b-ogacz5eken] {
    width: 40px;
    height: 40px;
    border: none;
    background-image: url("img/sort.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    cursor: pointer;
}

.anio-wrapper[b-ogacz5eken] {
    text-align: end;
    font-size: 14px;
    margin-right: 20px;
}

.mes-wrapper[b-ogacz5eken] {
    text-align: start;
    font-size: 14px;
}

.select-elegante[b-ogacz5eken] {
    width: 100%;
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #d0d0d0;
    border-radius: 8px;
    background-color: white;
    color: #333;
    appearance: none; /* oculta flecha nativa */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000080' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 6.646a.5.5 0 0 1 .708 0L8 9.293l2.646-2.647a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

    .select-elegante:hover[b-ogacz5eken] {
        border-color: #000080;
    }

    .select-elegante:focus[b-ogacz5eken] {
        outline: none;
        border-color: #000080;
        box-shadow: 0 0 4px rgba(0, 0, 128, 0.35);
    }

/* /Pages/Login.razor.rz.scp.css */
.login-page[b-c956fem5qt] {
    background-color: #000080;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    animation: fadeInUp-b-c956fem5qt 0.8s ease both;
}

/* Animación */
@keyframes fadeInUp-b-c956fem5qt {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.logo[b-c956fem5qt] {
    height: 150px;
    margin-top: 5px;
    object-fit: contain;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

/* Móviles */
@media (max-width: 480px) {
    .logo[b-c956fem5qt] {
        height: 120px;
    }
}

/* Tablets */
@media (min-width: 481px) and (max-width: 900px) {
    .logo[b-c956fem5qt] {
        height: 150px;
    }
}

/* Escritorio */
@media (min-width: 901px) {
    .logo[b-c956fem5qt] {
        height: 180px;
    }
}


.welcome[b-c956fem5qt] {
    color: white;
    margin-top: 20px;
    font-size: 18px;
}

.form-block[b-c956fem5qt] {
    /*margin-top: 20px;*/
    width: 100%;
    max-width: 320px; /* evita que se haga demasiado ancho */
}

.label[b-c956fem5qt] {
    color: white;
    font-size: 12px;
    display: block;
    text-align: left;
    margin-bottom: 0px;
}

.input-border[b-c956fem5qt] {
    border: 2px solid white;
    border-radius: 5px;
    padding: 2px;
    background-color: transparent;
    margin-bottom: 15px; /* separa cada campo */
}

.input[b-c956fem5qt] {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: none;
    outline: none;
    background-color: white;
    color: black;
    border-radius: 3px;
}

.btn-login[b-c956fem5qt] {
    width: 100%;
    background-color: #4682B4;
    color: white;
    font-size: 24px;
    padding: 10px;
    margin-top: 20px;
    border: none;
    border-radius: 5px;
}

.error[b-c956fem5qt] {
    color: salmon;
    font-size: 18px;
    margin-top: 10px;
}

.spinner[b-c956fem5qt] {
    margin: 20px auto;
    border: 4px solid #eee;
    border-top: 4px solid azure;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    animation: spin-b-c956fem5qt 1s linear infinite;
}

@keyframes spin-b-c956fem5qt {
    100% {
        transform: rotate(360deg);
    }
}
/* /Pages/PermisosPage.razor.rz.scp.css */
.permiso-container[b-c0q7r4p71w] {
    /*padding: 1rem;*/ padding: 5px;
}

/* CARDS */
.card[b-c0q7r4p71w] {
    border-radius: 8px;
    padding: 10px;
    margin: 10px 0;
    box-shadow: 2px 3px 5px rgba(0,0,0,0.3);
}

.blue[b-c0q7r4p71w] {
    background-color: #000080;
    color: white;
}

.white[b-c0q7r4p71w] {
    background-color: white;
}

.white-smoke[b-c0q7r4p71w] {
    background-color: whitesmoke;
}

/* USUARIO */
.user-grid[b-c0q7r4p71w] {
    display: grid;
    grid-template-columns: 60px auto;
    align-items: center;
}

.user-icon[b-c0q7r4p71w] {
    width: 45px;
    height: 45px;
}

.user-name[b-c0q7r4p71w] {
    font-size: 16px;
    font-weight: bold;
}

.user-dni[b-c0q7r4p71w] {
    font-size: 14px;
}

/* FECHA */
.fecha-grid[b-c0q7r4p71w] {
    display: grid;
    grid-template-columns: 70px auto;
    align-items: center;
}

.logo2[b-c0q7r4p71w] {
    width: 60px;
    height: 60px;
}

.fecha-text[b-c0q7r4p71w] {
    font-size: 18px;
    font-weight: bold;
}

/* MENU SUPERIOR */
.menu-grid[b-c0q7r4p71w] {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.menu-btn[b-c0q7r4p71w] {
    width: 50px;
    height: 50px;
    background-size: cover;
    border: none;
    border-radius: 8px;
}

.reloj[b-c0q7r4p71w] {
    background-image: url("img/clock.png");
}

.carpeta[b-c0q7r4p71w] {
    background-image: url("img/carpeta1.png");
}

.calendario[b-c0q7r4p71w] {
    background-image: url("img/calendar.png");
}

.usuario[b-c0q7r4p71w] {
    background-image: url("img/user.png");
}

.cerrar[b-c0q7r4p71w] {
    background-image: url("img/cerrar1.png");
}

.calendario.active[b-c0q7r4p71w] {
    border: 2px solid #000080;
}

/* SELECTOR MES */
.selector-card[b-c0q7r4p71w] {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important; /* CENTRA TODO */
    gap: 12px; /* SEPARACIÓN SUAVE */
    padding: 6px 10px;
    width: 100%;
}

.selector-text[b-c0q7r4p71w] {
    font-size: 16px;
    font-weight: 300;
    white-space: nowrap;
}

.highlight[b-c0q7r4p71w] {
    padding: 4px 10px;
    background: #00008015; /* azul muy suave */
    border: 1px solid #00008055;
    border-radius: 6px;
    font-weight: 600;
    color: #000080;
}

.nav-btn[b-c0q7r4p71w] {
    background-color: #4682B4;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 400; /* antes 600 */
    cursor: pointer;
    min-width: 40px;
    transition: background-color 0.25s ease, transform 0.12s ease;
}

    /* Hover: tono más claro */
    .nav-btn:hover[b-c0q7r4p71w] {
        background-color: #5a96c8; /* azul más claro y elegante */
    }

    /* Pulsación estilo móvil */
    .nav-btn:active[b-c0q7r4p71w] {
        transform: scale(0.92);
    }


/* LISTA PERMISOS */
.lista-permisos[b-c0q7r4p71w] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.permiso-card[b-c0q7r4p71w] {
    padding: 12px;
    border-radius: 8px;
}

    .permiso-card.verde[b-c0q7r4p71w] {
        background-color: lightgreen;
    }

    .permiso-card.azul[b-c0q7r4p71w] {
        background-color: skyblue;
    }

    .permiso-card.rosa[b-c0q7r4p71w] {
        background-color: lightpink;
    }

    .permiso-card.gris[b-c0q7r4p71w] {
        background-color: whitesmoke;
    }

.permiso-fecha[b-c0q7r4p71w] {
    font-size: 16px;
    font-weight: bold;
    text-align: right;
}

.permiso-dia[b-c0q7r4p71w] {
    font-size: 18px;
    margin-bottom: 10px;
}

/* BOTONES */
.btn-solicitar[b-c0q7r4p71w],
.btn-anular[b-c0q7r4p71w] {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: none;
    font-size: 16px;
    font-weight: bold;
}

.btn-solicitar[b-c0q7r4p71w] {
    background-color: #4682B4;
    color: white;
}

.btn-anular[b-c0q7r4p71w] {
    background-color: salmon;
    color: black;
}

.titulo-btn-card[b-c0q7r4p71w] {
    width: 100%;
    background: #f5f5f5; /* white-smoke */
    border: none;
    border-radius: 12px;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    cursor: pointer;
    /* Estilo tarjeta */
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}

    /* Efecto hover */
    .titulo-btn-card:hover[b-c0q7r4p71w] {
        box-shadow: 0 3px 10px rgba(0,0,0,0.12);
    }

    /* Efecto pulsación (tacto móvil) */
    .titulo-btn-card:active[b-c0q7r4p71w] {
        transform: scale(0.96);
        box-shadow: 0 1px 4px rgba(0,0,0,0.10);
    }



/* Contenedor centrado */
.titulo-wrapper[b-c0q7r4p71w] {
    display: flex;
    justify-content: center;
    /*margin: 12px 0;*/
}

/* /Pages/UsuarioPage.razor.rz.scp.css */
.page[b-chcztljzz8] {
    padding: 10px;
    background: white;
}

/* Tarjetas equivalentes a Border + Shadow */
.card[b-chcztljzz8] {
    background: white;
    padding: 10px;
    margin: 8px 5px;
    border-radius: 6px;
    box-shadow: 2px 3px 5px rgba(0,0,0,0.25);
}

/* HEADER */
.header-card[b-chcztljzz8] {
    background: #000080;
    color: white;
}

.header-grid[b-chcztljzz8] {
    display: grid;
    grid-template-columns: 70px auto;
    grid-template-rows: 25px 25px;
    align-items: center;
}

.avatar[b-chcztljzz8] {
    width: 40px;
    height: 40px;
    margin-left: 5px;
}

.user-name[b-chcztljzz8] {
    font-size: 14px;
    margin-left: 10px;
}

.user-dni[b-chcztljzz8] {
    font-size: 14px;
    margin-left: 10px;
}

/* MENU */
.menu-grid[b-chcztljzz8] {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.icon-btn[b-chcztljzz8] {
    background: none;
    border: none;
    padding: 5px;
}

    .icon-btn img[b-chcztljzz8] {
        width: 40px;
        height: 40px;
    }

    .icon-btn.selected[b-chcztljzz8] {
        background: lightyellow;
        border: 1px solid black;
    }

/* TÍTULO */
.title-card[b-chcztljzz8] {
    text-align: center;
}

.title-text[b-chcztljzz8] {
    font-size: 16px;
    font-weight: bold;
}

/* INFO */
.info-card .info-row[b-chcztljzz8] {
    font-size: 14px;
    padding: 5px 0;
}

/* PASSWORD */
.pass-card .msg[b-chcztljzz8] {
    font-size: 12px;
    text-align: center;
    margin-bottom: 10px;
}

.pass-row[b-chcztljzz8] {
    display: grid;
    grid-template-columns: 1fr 40px;
    margin-bottom: 10px;
}

.pass-input[b-chcztljzz8] {
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.eye-btn[b-chcztljzz8] {
    background: none;
    border: none;
}

    .eye-btn img[b-chcztljzz8] {
        width: 30px;
        height: 30px;
    }

.btn-change[b-chcztljzz8] {
    width: 100%;
    padding: 10px;
    background: teal;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
}

.msg-error[b-chcztljzz8] {
    color: salmon;
    text-align: center;
}

.msg-ok[b-chcztljzz8] {
    color: green;
    text-align: center;
}


/* PANEL SWITCH */
.switch-card[b-chcztljzz8] {
    padding: 5px;
}

.switch-grid[b-chcztljzz8] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.switch-btn[b-chcztljzz8] {
    background: #4682B4;
    color: white;
    border: none;
    padding: 12px 0;
    border-radius: 5px;
    font-size: 16px;
    box-shadow: 2px 3px 5px rgba(0,0,0,0.25);
}

    .switch-btn.active[b-chcztljzz8] {
        background: #315f80;
        font-weight: bold;
    }

/* /Shared/BottomDock.razor.rz.scp.css */


/* Asignación de imágenes */
.menu-btn.reloj[b-fa40jo6pn3] {
    background-image: url("img/casas.png");
}

.menu-btn.carpeta[b-fa40jo6pn3] {
    background-image: url("img/carpeta1.png");
}

.menu-btn.calendario[b-fa40jo6pn3] {
    background-image: url("img/calendar.png");
}

.menu-btn.usuario[b-fa40jo6pn3] {
    background-image: url("img/user.png");
}

.menu-btn.cerrar[b-fa40jo6pn3] {
    background-image: url("img/cerrar1.png");
}



.bottom-dock[b-fa40jo6pn3] {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 -4px 18px rgba(0,0,0,0.15);
}

    .bottom-dock .menu-grid[b-fa40jo6pn3] {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        gap: 12px;
    }

    .bottom-dock .menu-btn[b-fa40jo6pn3] {
        width: 48px;
        height: 48px;
        border: none;
        border-radius: 14px;
        background-size: 60%;
        background-repeat: no-repeat;
        background-position: center;
        background-color: rgba(255,255,255,0.55);
        backdrop-filter: blur(6px);
        transition: transform 0.18s ease, background-color 0.25s ease, box-shadow 0.25s ease;
    }

        .bottom-dock .menu-btn:hover[b-fa40jo6pn3] {
            background-color: rgba(255,255,255,0.8);
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        }

        .bottom-dock .menu-btn:active[b-fa40jo6pn3] {
            transform: scale(0.82);
            background-color: rgba(255,255,255,0.95);
        }
/* /Shared/Clock.razor.rz.scp.css */



.clock-text[b-r02goggznq] {
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.45);
}

.clock-frame[b-r02goggznq] {
    padding: 3px 3px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(4px);
    animation: clockGlow-b-r02goggznq 2.8s ease-in-out infinite;
}

/* Segundos pequeños */
.clock-ss[b-r02goggznq] {
    font-size: 0.9rem;
    font-weight: 400;
    color: #ffffff99;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.35);
}

@keyframes clockGlow-b-r02goggznq {
    0% {
        box-shadow: 0 0 4px rgba(255,255,255,0.25);
    }

    50% {
        box-shadow: 0 0 12px rgba(255,255,255,0.55);
    }

    100% {
        box-shadow: 0 0 4px rgba(255,255,255,0.25);
    }
}











.clock-text3[b-r02goggznq] {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff; /* blanco puro */
    letter-spacing: 1px;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.55); /* brillo suave blanco */
}

.clock-frame3[b-r02goggznq] {
    padding: 2px 6px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.35); /* borde blanco suave */
    background: rgba(255, 255, 255, 0.10); /* fondo translúcido */
    display: inline-flex;
    align-items: center;
}




.clock-text2[b-r02goggznq] {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ff9500; /*#00aaff color llamativo */
    letter-spacing: 1px;
    text-shadow: 0 0 6px rgba(255, 204, 0, 0.6);
}

.clock-frame2[b-r02goggznq] {
    padding: 2px 2px;
    border-radius: 12px;
    border: 2px solid rgba(255, 204, 0, 0.7); /* borde llamativo */
    background: rgba(255, 255, 255, 0.08); /* fondo suave */
    display: inline-flex;
    align-items: center;
}


.Xclock-text[b-r02goggznq] {
    font-size: 1.6rem; /* tamaño grande */
    font-weight: 700; /* más presencia */
    color: #ffcc00; /* amarillo llamativo estilo warning premium */
    letter-spacing: 1px;
    text-shadow: 0 0 6px rgba(255, 204, 0, 0.6); /* brillo suave */
    /*
Rojo vibrante: #ff3b30
         
Verde neón: #39ff14

Azul eléctrico: #00aaff

Naranja intenso: #ff9500
    */
}



/*
.clock-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bs-gray-100);
    letter-spacing: 1px;
}
*/

/* /Shared/IniciarTiempoModal.razor.rz.scp.css */
/* ============================
   OVERLAY (oscurecido)
   ============================ */
.modal-overlay[b-h4i10l67br] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    justify-content: center;
    border-radius: 20px; /* 4 esquinas redondeadas */
    /*border-radius: 20px 20px 0 0;*/
    align-items: center; /* CENTRADO VERTICAL */
    /*align-items: flex-end;*/
    animation: fadeIn-b-h4i10l67br 0.25s ease;
    z-index: 9999;
}

/* ============================
   MODAL ESTILO iOS
   ============================ */
.ios-modal[b-h4i10l67br] {
    background: white;
    width: 100%;
    max-width: 420px;
    padding: 24px;
    border-radius: 20px; /* 4 esquinas redondeadas */
    /*border-radius: 20px 20px 0 0;*/
    text-align: center;
    animation: slideUp-b-h4i10l67br 0.28s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

/* Modo oscuro automático */
@media (prefers-color-scheme: dark) {
    .ios-modal[b-h4i10l67br] {
        background: #1e1e1e;
        color: #f2f2f2;
    }
}

/* ============================
   ICONO ✔
   ============================ */
.modal-icon[b-h4i10l67br] {
    font-size: 2.4rem;
    color: #0078ff;
    margin-bottom: 10px;
}

/* ============================
   ICONO INICIAR
   ============================ */
.iniciar-icon[b-h4i10l67br] {
    font-size: 2.8rem;
    color: #ff3b30;
    margin-bottom: 14px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* ============================
   TÍTULO
   ============================ */
.ios-modal h3[b-h4i10l67br] {
    margin-bottom: 20px;
    font-size: 1.25rem;
    font-weight: 600;
}

/* ============================
   CONTENEDOR DE BOTONES
   ============================ */
.modal-buttons[b-h4i10l67br] {
    display: flex;
    flex-direction: column;
    gap: 12px; /* separación vertical elegante */
    margin-top: 20px;
}

/* ============================
   BOTÓN CONFIRMAR
   ============================ */
.btn-confirm[b-h4i10l67br] {
    background: #0078ff;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s ease, transform 0.15s ease;
}

    .btn-confirm:hover[b-h4i10l67br] {
        background: #006ae0;
    }

    .btn-confirm:active[b-h4i10l67br] {
        transform: scale(0.97);
    }

/* ============================
   BOTÓN CANCELAR (estilo iOS)
   ============================ */
.btn-cancelar[b-h4i10l67br] {
    background: #e5e5ea; /* gris iOS */
    color: #333;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s ease, transform 0.15s ease;
}

    .btn-cancelar:hover[b-h4i10l67br] {
        background: #d4d4d8;
    }

    .btn-cancelar:active[b-h4i10l67br] {
        transform: scale(0.97);
    }

/* ============================
   ANIMACIONES
   ============================ */
@keyframes fadeIn-b-h4i10l67br {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-h4i10l67br {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* /Shared/OnAnularModal.razor.rz.scp.css */
/* ============================
   OVERLAY (oscurecido)
   ============================ */
.modal-overlay[b-g6wpi8j0f2] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    justify-content: center;
    border-radius: 20px; /* 4 esquinas redondeadas */
    /*border-radius: 20px 20px 0 0;*/
    align-items: center; /* CENTRADO VERTICAL */
    /*align-items: flex-end;*/
    animation: fadeIn-b-g6wpi8j0f2 0.25s ease;
    z-index: 9999;
}

/* ============================
   MODAL ESTILO iOS
   ============================ */
.ios-modal[b-g6wpi8j0f2] {
    background: white;
    width: 100%;
    max-width: 420px;
    padding: 24px;
    border-radius: 20px; /* 4 esquinas redondeadas */
    /*border-radius: 20px 20px 0 0;*/
    text-align: center;
    animation: slideUp-b-g6wpi8j0f2 0.28s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

/* Modo oscuro automático */
@media (prefers-color-scheme: dark) {
    .ios-modal[b-g6wpi8j0f2] {
        background: #1e1e1e;
        color: #f2f2f2;
    }
}

/* ============================
   ICONO ✔
   ============================ */
.modal-icon[b-g6wpi8j0f2] {
    font-size: 2.4rem;
    color: #0078ff;
    margin-bottom: 10px;
}

/* ============================
   ICONO INICIAR
   ============================ */
.iniciar-icon[b-g6wpi8j0f2] {
    font-size: 2.8rem;
    color: #ff3b30;
    margin-bottom: 14px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* ============================
   TÍTULO
   ============================ */
.ios-modal h3[b-g6wpi8j0f2] {
    margin-bottom: 20px;
    font-size: 1.25rem;
    font-weight: 600;
}

/* ============================
   CONTENEDOR DE BOTONES
   ============================ */
.modal-buttons[b-g6wpi8j0f2] {
    display: flex;
    flex-direction: column;
    gap: 12px; /* separación vertical elegante */
    margin-top: 20px;
}

/* ============================
   BOTÓN CONFIRMAR
   ============================ */
.btn-confirm[b-g6wpi8j0f2] {
    background: #0078ff;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s ease, transform 0.15s ease;
}

    .btn-confirm:hover[b-g6wpi8j0f2] {
        background: #006ae0;
    }

    .btn-confirm:active[b-g6wpi8j0f2] {
        transform: scale(0.97);
    }

/* ============================
   BOTÓN CANCELAR (estilo iOS)
   ============================ */
.btn-cancelar[b-g6wpi8j0f2] {
    background: #e5e5ea; /* gris iOS */
    color: #333;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s ease, transform 0.15s ease;
}

    .btn-cancelar:hover[b-g6wpi8j0f2] {
        background: #d4d4d8;
    }

    .btn-cancelar:active[b-g6wpi8j0f2] {
        transform: scale(0.97);
    }

/* ============================
   ANIMACIONES
   ============================ */
@keyframes fadeIn-b-g6wpi8j0f2 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-g6wpi8j0f2 {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* /Shared/OnDetenerModalClose.razor.rz.scp.css */
/* ============================
   OVERLAY (oscurecido)
   ============================ */
.modal-overlay[b-dygjidxu51] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    justify-content: center;
    border-radius: 20px; /* 4 esquinas redondeadas */
    /*border-radius: 20px 20px 0 0;*/
    align-items: center; /* CENTRADO VERTICAL */
    /*align-items: flex-end;*/
    animation: fadeIn-b-dygjidxu51 0.25s ease;
    z-index: 9999;
}

/* ============================
   MODAL ESTILO iOS
   ============================ */
.ios-modal[b-dygjidxu51] {
    background: white;
    width: 100%;
    max-width: 420px;
    padding: 24px;
    border-radius: 20px; /* 4 esquinas redondeadas */
    /*border-radius: 20px 20px 0 0;*/
    text-align: center;
    animation: slideUp-b-dygjidxu51 0.28s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

/* Modo oscuro automático */
@media (prefers-color-scheme: dark) {
    .ios-modal[b-dygjidxu51] {
        background: #1e1e1e;
        color: #f2f2f2;
    }
}

/* ============================
   ICONO ✔
   ============================ */
.modal-icon[b-dygjidxu51] {
    font-size: 2.4rem;
    color: #0078ff;
    margin-bottom: 10px;
}

/* ============================
   ICONO DETENER
   ============================ */
.detener-icon[b-dygjidxu51] {
    font-size: 2.8rem;
    color: #ff3b30;
    margin-bottom: 14px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* ============================
   TÍTULO
   ============================ */
.ios-modal h3[b-dygjidxu51] {
    margin-bottom: 20px;
    font-size: 1.25rem;
    font-weight: 600;
}

/* ============================
   CONTENEDOR DE BOTONES
   ============================ */
.modal-buttons[b-dygjidxu51] {
    display: flex;
    flex-direction: column;
    gap: 12px; /* separación vertical elegante */
    margin-top: 20px;
}

/* ============================
   BOTÓN CONFIRMAR
   ============================ */
.btn-confirm[b-dygjidxu51] {
    background: #0078ff;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s ease, transform 0.15s ease;
}

    .btn-confirm:hover[b-dygjidxu51] {
        background: #006ae0;
    }

    .btn-confirm:active[b-dygjidxu51] {
        transform: scale(0.97);
    }

/* ============================
   BOTÓN CANCELAR (estilo iOS)
   ============================ */
.btn-cancelar[b-dygjidxu51] {
    background: #e5e5ea; /* gris iOS */
    color: #333;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s ease, transform 0.15s ease;
}

    .btn-cancelar:hover[b-dygjidxu51] {
        background: #d4d4d8;
    }

    .btn-cancelar:active[b-dygjidxu51] {
        transform: scale(0.97);
    }

/* ============================
   ANIMACIONES
   ============================ */
@keyframes fadeIn-b-dygjidxu51 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-dygjidxu51 {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* /Shared/OnPassModal.razor.rz.scp.css */
/* ============================
   OVERLAY (oscurecido)
   ============================ */
.modal-overlay[b-qb14n5lg61] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    justify-content: center;
    border-radius: 20px; /* 4 esquinas redondeadas */
    /*border-radius: 20px 20px 0 0;*/
    align-items: center; /* CENTRADO VERTICAL */
    /*align-items: flex-end;*/
    animation: fadeIn-b-qb14n5lg61 0.25s ease;
    z-index: 9999;
}

/* ============================
   MODAL ESTILO iOS
   ============================ */
.ios-modal[b-qb14n5lg61] {
    background: white;
    width: 100%;
    max-width: 420px;
    padding: 24px;
    border-radius: 20px; /* 4 esquinas redondeadas */
    /*border-radius: 20px 20px 0 0;*/
    text-align: center;
    animation: slideUp-b-qb14n5lg61 0.28s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

/* Modo oscuro automático */
@media (prefers-color-scheme: dark) {
    .ios-modal[b-qb14n5lg61] {
        background: #1e1e1e;
        color: #f2f2f2;
    }
}

/* ============================
   ICONO ✔
   ============================ */
.modal-icon[b-qb14n5lg61] {
    font-size: 2.4rem;
    color: #0078ff;
    margin-bottom: 10px;
}

/* ============================
   ICONO INICIAR
   ============================ */
.iniciar-icon[b-qb14n5lg61] {
    font-size: 2.8rem;
    color: #ff3b30;
    margin-bottom: 14px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* ============================
   TÍTULO
   ============================ */
.ios-modal h3[b-qb14n5lg61] {
    margin-bottom: 20px;
    font-size: 1.25rem;
    font-weight: 600;
}

/* ============================
   CONTENEDOR DE BOTONES
   ============================ */
.modal-buttons[b-qb14n5lg61] {
    display: flex;
    flex-direction: column;
    gap: 12px; /* separación vertical elegante */
    margin-top: 20px;
}

/* ============================
   BOTÓN CONFIRMAR
   ============================ */
.btn-confirm[b-qb14n5lg61] {
    background: #0078ff;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s ease, transform 0.15s ease;
}

    .btn-confirm:hover[b-qb14n5lg61] {
        background: #006ae0;
    }

    .btn-confirm:active[b-qb14n5lg61] {
        transform: scale(0.97);
    }

/* ============================
   BOTÓN CANCELAR (estilo iOS)
   ============================ */
.btn-cancelar[b-qb14n5lg61] {
    background: #e5e5ea; /* gris iOS */
    color: #333;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s ease, transform 0.15s ease;
}

    .btn-cancelar:hover[b-qb14n5lg61] {
        background: #d4d4d8;
    }

    .btn-cancelar:active[b-qb14n5lg61] {
        transform: scale(0.97);
    }

/* ============================
   ANIMACIONES
   ============================ */
@keyframes fadeIn-b-qb14n5lg61 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-qb14n5lg61 {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* /Shared/OnSalirModal.razor.rz.scp.css */
/* ============================
   OVERLAY (oscurecido)
   ============================ */
.modal-overlay[b-nrjgq0ozlf] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    justify-content: center;
    border-radius: 20px; /* 4 esquinas redondeadas */
    /*border-radius: 20px 20px 0 0;*/
    align-items: center; /* CENTRADO VERTICAL */
    /*align-items: flex-end;*/
    animation: fadeIn-b-nrjgq0ozlf 0.25s ease;
    z-index: 9999;
}


/* ============================
   MODAL ESTILO iOS
   ============================ */
.ios-modal[b-nrjgq0ozlf] {
    background: white;
    width: 90%;
    max-width: 420px;
    padding: 24px;
    border-radius: 20px; /* 4 esquinas redondeadas */
    text-align: center;
    animation: slideUp-b-nrjgq0ozlf 0.28s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Modo oscuro automático */
@media (prefers-color-scheme: dark) {
    .ios-modal[b-nrjgq0ozlf] {
        background: #1e1e1e;
        color: #f2f2f2;
    }
}

/* ============================
   ICONO SALIR
   ============================ */
.salir-icon[b-nrjgq0ozlf] {
    font-size: 2.8rem;
    color: #ff3b30;
    margin-bottom: 14px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* ============================
   TÍTULO
   ============================ */
.ios-modal h3[b-nrjgq0ozlf] {
    margin-bottom: 20px;
    font-size: 1.25rem;
    font-weight: 600;
}

/* ============================
   BOTÓN CERRAR SESIÓN
   ============================ */
.btn-salir[b-nrjgq0ozlf] {
    background: #ff3b30; /* rojo iOS */
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s ease, transform 0.15s ease;
}

    .btn-salir:hover[b-nrjgq0ozlf] {
        background: #e13229;
    }

    .btn-salir:active[b-nrjgq0ozlf] {
        transform: scale(0.97);
    }

/* ============================
   ANIMACIONES
   ============================ */
@keyframes fadeIn-b-nrjgq0ozlf {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-nrjgq0ozlf {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* /Shared/OnSolicitarModal.razor.rz.scp.css */
/* ============================
   OVERLAY (oscurecido)
   ============================ */
.modal-overlay[b-s1jiqsda1p] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    justify-content: center;
    border-radius: 20px; /* 4 esquinas redondeadas */
    /*border-radius: 20px 20px 0 0;*/
    align-items: center; /* CENTRADO VERTICAL */
    /*align-items: flex-end;*/
    animation: fadeIn-b-s1jiqsda1p 0.25s ease;
    z-index: 9999;
}

/* ============================
   MODAL ESTILO iOS
   ============================ */
.ios-modal[b-s1jiqsda1p] {
    background: white;
    width: 100%;
    max-width: 420px;
    padding: 24px;
    border-radius: 20px; /* 4 esquinas redondeadas */
    /*border-radius: 20px 20px 0 0;*/
    text-align: center;
    animation: slideUp-b-s1jiqsda1p 0.28s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

/* Modo oscuro automático */
@media (prefers-color-scheme: dark) {
    .ios-modal[b-s1jiqsda1p] {
        background: #1e1e1e;
        color: #f2f2f2;
    }
}

/* ============================
   ICONO ✔
   ============================ */
.modal-icon[b-s1jiqsda1p] {
    font-size: 2.4rem;
    color: #0078ff;
    margin-bottom: 10px;
}

/* ============================
   ICONO INICIAR
   ============================ */
.iniciar-icon[b-s1jiqsda1p] {
    font-size: 2.8rem;
    color: #ff3b30;
    margin-bottom: 14px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* ============================
   TÍTULO
   ============================ */
.ios-modal h3[b-s1jiqsda1p] {
    margin-bottom: 20px;
    font-size: 1.25rem;
    font-weight: 600;
}

/* ============================
   CONTENEDOR DE BOTONES
   ============================ */
.modal-buttons[b-s1jiqsda1p] {
    display: flex;
    flex-direction: column;
    gap: 12px; /* separación vertical elegante */
    margin-top: 20px;
}

/* ============================
   BOTÓN CONFIRMAR
   ============================ */
.btn-confirm[b-s1jiqsda1p] {
    background: #0078ff;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s ease, transform 0.15s ease;
}

    .btn-confirm:hover[b-s1jiqsda1p] {
        background: #006ae0;
    }

    .btn-confirm:active[b-s1jiqsda1p] {
        transform: scale(0.97);
    }

/* ============================
   BOTÓN CANCELAR (estilo iOS)
   ============================ */
.btn-cancelar[b-s1jiqsda1p] {
    background: #e5e5ea; /* gris iOS */
    color: #333;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s ease, transform 0.15s ease;
}

    .btn-cancelar:hover[b-s1jiqsda1p] {
        background: #d4d4d8;
    }

    .btn-cancelar:active[b-s1jiqsda1p] {
        transform: scale(0.97);
    }

/* ============================
   ANIMACIONES
   ============================ */
@keyframes fadeIn-b-s1jiqsda1p {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-s1jiqsda1p {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* /Shared/TurnosPage.razor.rz.scp.css */
/* ============================
   OVERLAY (oscurecido)
   ============================ */
.modal-overlay[b-hexdvr8tmj] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    justify-content: center;
    border-radius: 20px; /* 4 esquinas redondeadas */
    /*border-radius: 20px 20px 0 0;*/
    align-items: center; /* CENTRADO VERTICAL */
    /*align-items: flex-end;*/
    animation: fadeIn-b-hexdvr8tmj 0.25s ease;
    z-index: 9999;
}

/* ============================
   MODAL ESTILO iOS
   ============================ */
.ios-modal[b-hexdvr8tmj] {
    background: white;
    width: 100%;
    max-width: 420px;
    padding: 24px;
    border-radius: 20px; /* 4 esquinas redondeadas */
    /*border-radius: 20px 20px 0 0;*/
    text-align: center;
    animation: slideUp-b-hexdvr8tmj 0.28s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

/* Modo oscuro automático */
@media (prefers-color-scheme: dark) {
    .ios-modal[b-hexdvr8tmj] {
        background: #1e1e1e;
        color: #f2f2f2;
    }
}

/* ============================
   ICONO ✔
   ============================ */
.modal-icon[b-hexdvr8tmj] {
    font-size: 2.4rem;
    color: #0078ff;
    margin-bottom: 10px;
}

/* ============================
   ICONO INICIAR
   ============================ */
.iniciar-icon[b-hexdvr8tmj] {
    font-size: 2.8rem;
    color: #ff3b30;
    margin-bottom: 14px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* ============================
   TÍTULO
   ============================ */
.ios-modal h3[b-hexdvr8tmj] {
    margin-bottom: 20px;
    font-size: 1.25rem;
    font-weight: 600;
}

/* ============================
   CONTENEDOR DE BOTONES
   ============================ */
.modal-buttons[b-hexdvr8tmj] {
    display: flex;
    flex-direction: column;
    gap: 12px; /* separación vertical elegante */
    margin-top: 20px;
}

/* ============================
   BOTÓN CONFIRMAR
   ============================ */
.btn-confirm[b-hexdvr8tmj] {
    background: #0078ff;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s ease, transform 0.15s ease;
}

    .btn-confirm:hover[b-hexdvr8tmj] {
        background: #006ae0;
    }

    .btn-confirm:active[b-hexdvr8tmj] {
        transform: scale(0.97);
    }

/* ============================
   BOTÓN CANCELAR (estilo iOS)
   ============================ */
.btn-cancelar[b-hexdvr8tmj] {
    background: #e5e5ea; /* gris iOS */
    color: #333;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s ease, transform 0.15s ease;
}

    .btn-cancelar:hover[b-hexdvr8tmj] {
        background: #d4d4d8;
    }

    .btn-cancelar:active[b-hexdvr8tmj] {
        transform: scale(0.97);
    }

/* ============================
   ANIMACIONES
   ============================ */
@keyframes fadeIn-b-hexdvr8tmj {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-hexdvr8tmj {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}





.turno-bloque[b-hexdvr8tmj] {
    display: flex;
    justify-content: center; /* Centra todo el bloque */
    width: 100%;
    margin-bottom: 12px;
}

.turno-columna[b-hexdvr8tmj] {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dos columnas iguales */
    gap: 6px 22px; /* Espaciado vertical y horizontal */
    text-align: center;
    max-width: 340px; /* Compacto y elegante */
    width: 100%;
}

/* Etiquetas ENTRADA / SALIDA */
.turno-header[b-hexdvr8tmj] {
    font-size: 0.85rem;
    font-weight: 700;
    color: #374151;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

/* Valores (fecha y hora) */
.turno-valor[b-hexdvr8tmj] {
    font-size: 1.05rem;
    font-weight: 600;
    color: #111827;
}

    /* Alineaciones específicas */
    .turno-header.entrada[b-hexdvr8tmj],
    .turno-valor.entrada[b-hexdvr8tmj] {
        text-align: right;
    }

    .turno-header.salida[b-hexdvr8tmj],
    .turno-valor.salida[b-hexdvr8tmj] {
        text-align: left;
    }

    .turno-valor.entrada[b-hexdvr8tmj] {
        color: #66bb6a; /* Verde suave corporativo */
        font-weight: 700;
    }

    .turno-valor.salida[b-hexdvr8tmj] {
        color: #e53935; /* Rojo corporativo elegante */
        font-weight: 700; /* Mantiene fuerza visual */
    }


/* Modo oscuro */
@media (prefers-color-scheme: dark) {
    .turno-header[b-hexdvr8tmj] {
        color: #d1d5db;
    }

    .turno-valor[b-hexdvr8tmj] {
        color: #f3f4f6;
    }
}



/* ============================
   PONER FECHA MÁS SUAVE QUE LA HORA
   ============================ */
.fecha-suave[b-hexdvr8tmj] {
    opacity: 0.55; /* más suave */
    font-weight: 500; /* menos marcado */
    margin-left: 4px; /* pequeño espacio elegante */
    font-size: 0.95em; /* un poco más pequeño */
}
@media (prefers-color-scheme: dark) {
    .hora-suave[b-hexdvr8tmj] {
        opacity: 0.65;
    }
}



/* ============================
   LINEA DIVISORIA DE FOREACH
   ============================ */
.turno-item[b-hexdvr8tmj] {
    padding-bottom: 12px;
    margin-bottom: 12px;
    /* Línea centrada y más gruesa */
    border-bottom: 2px solid #d1d5db; /* gris suave */
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

/* Modo oscuro */
@media (prefers-color-scheme: dark) {
    .turno-item[b-hexdvr8tmj] {
        border-bottom: 2px solid #4b4b4b;
    }
}

/* Quitar línea en el último elemento */
.turno-item:last-child[b-hexdvr8tmj] {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}



/* ============================
   PRIMER ELEMENTO DEL FOREACH (destacado suave)
   ============================ */
.turno-item.primero[b-hexdvr8tmj] {
    background: rgba(0, 0, 0, 0.04); /* gris muy suave */
    border-radius: 10px;
    padding: 10px;
}

/* Modo oscuro */
@media (prefers-color-scheme: dark) {
    .turno-item.primero[b-hexdvr8tmj] {
        background: rgba(255, 255, 255, 0.06);
    }
}



.resaltado-turno[b-hexdvr8tmj] {
    background: #f3f4f6; /* gris suave profesional */
    padding: 10px 14px;
    border-radius: 10px;
    width: 100%;
    margin: 0 auto; /* centra horizontalmente */
    text-align: center;
    font-weight: 700;
    color: #111827;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06); /* sombra elegante */
}

/* Modo oscuro */
@media (prefers-color-scheme: dark) {
    .resaltado-turno[b-hexdvr8tmj] {
        background: #2d2d2d;
        color: #f3f4f6;
        box-shadow: 0 2px 6px rgba(0,0,0,0.35);
    }
}
/* /Shared/VerPermisosPage.razor.rz.scp.css */
/* ============================
   OVERLAY (oscurecido)
   ============================ */
.modal-overlay[b-4rqhaqo8zh] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    justify-content: center;
    border-radius: 20px; /* 4 esquinas redondeadas */
    /*border-radius: 20px 20px 0 0;*/
    align-items: center; /* CENTRADO VERTICAL */
    /*align-items: flex-end;*/
    animation: fadeIn-b-4rqhaqo8zh 0.25s ease;
    z-index: 9999;
}

/* ============================
   MODAL ESTILO iOS
   ============================ */
.ios-modal[b-4rqhaqo8zh] {
    background: white;
    width: 100%;
    max-width: 420px;
    padding: 24px;
    border-radius: 20px; /* 4 esquinas redondeadas */
    /*border-radius: 20px 20px 0 0;*/
    text-align: center;
    animation: slideUp-b-4rqhaqo8zh 0.28s ease;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

/* Modo oscuro automático */
@media (prefers-color-scheme: dark) {
    .ios-modal[b-4rqhaqo8zh] {
        background: #1e1e1e;
        color: #f2f2f2;
    }
}

/* ============================
   ICONO ✔
   ============================ */
.modal-icon[b-4rqhaqo8zh] {
    font-size: 2.4rem;
    color: #0078ff;
    margin-bottom: 10px;
}

/* ============================
   ICONO INICIAR
   ============================ */
.iniciar-icon[b-4rqhaqo8zh] {
    font-size: 2.8rem;
    color: #ff3b30;
    margin-bottom: 14px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* ============================
   TÍTULO
   ============================ */
.ios-modal h3[b-4rqhaqo8zh] {
    margin-bottom: 20px;
    font-size: 1.25rem;
    font-weight: 600;
}

/* ============================
   CONTENEDOR DE BOTONES
   ============================ */
.modal-buttons[b-4rqhaqo8zh] {
    display: flex;
    flex-direction: column;
    gap: 12px; /* separación vertical elegante */
    margin-top: 20px;
}

/* ============================
   BOTÓN CONFIRMAR
   ============================ */
.btn-confirm[b-4rqhaqo8zh] {
    background: #0078ff;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s ease, transform 0.15s ease;
}

    .btn-confirm:hover[b-4rqhaqo8zh] {
        background: #006ae0;
    }

    .btn-confirm:active[b-4rqhaqo8zh] {
        transform: scale(0.97);
    }

/* ============================
   BOTÓN CANCELAR (estilo iOS)
   ============================ */
.btn-cancelar[b-4rqhaqo8zh] {
    background: #e5e5ea; /* gris iOS */
    color: #333;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s ease, transform 0.15s ease;
}

    .btn-cancelar:hover[b-4rqhaqo8zh] {
        background: #d4d4d8;
    }

    .btn-cancelar:active[b-4rqhaqo8zh] {
        transform: scale(0.97);
    }

/* ============================
   ANIMACIONES
   ============================ */
@keyframes fadeIn-b-4rqhaqo8zh {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-4rqhaqo8zh {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}
