/* /Components/Layout/MainLayout.razor.rz.scp.css */

/* Busca la clase que define el fondo del sidebar */
.sidebar[b-gy2naef8un] {
    /* Cambia el degradado morado por Negro Sólido */
    background-image: none !important;
    background-color: #000000 !important; /* Negro absoluto */
}

/* Busca la clase del top-row (donde dice "Peluquería Viana") */
.top-row.sidebar[b-gy2naef8un] {
    background-color: #1a1a1a !important; /* Un gris casi negro para contrastar un poco */
    border-bottom: 1px solid #333;
}

/* Cambia el color del texto del título y los enlaces para que resalten en el negro */
.navbar-brand[b-gy2naef8un], .nav-link[b-gy2naef8un] {
    color: #ffffff !important;
}

    /* Cambia el color cuando pasas el mouse (hover) por los enlaces */
    .nav-link:hover[b-gy2naef8un] {
        background-color: #333333 !important; /* Un gris oscuro */
        color: #ffffff !important;
    }

    /* Cambia el color del enlace activo (el que está seleccionado) */
    .nav-link.active[b-gy2naef8un] {
        background-color: #ffffff !important; /* Fondo blanco */
        color: #000000 !important; /* Texto negro */
        font-weight: bold;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* El contenedor principal del menú lateral */
.nav-scrollable[b-n2tpjrtgph] {
    background-color: #000000; /* Negro puro */
}

/* El estilo de cada ítem del menú */
.nav-item[b-n2tpjrtgph] {
    padding: 0.2rem 0.5rem;
}

    /* Forzamos que el texto y los iconos sean blancos */
    .nav-item[b-n2tpjrtgph]  a {
        color: #ffffff !important;
        display: flex;
        align-items: center;
        border-radius: 4px;
        height: 3rem;
        transition: all 0.2s ease;
    }

    /* Estilo para el icono (el cuadradito del icono de Bootstrap) */
    .nav-item[b-n2tpjrtgph]  .bi {
        color: #ffffff !important;
        font-size: 1.1rem;
        margin-right: 0.75rem;
    }

    /* Efecto al pasar el ratón (Hover) */
    .nav-item[b-n2tpjrtgph]  a:hover {
        background-color: #333333; /* Gris oscuro elegante */
        color: #ffffff !important;
    }

    /* Estilo para la opción que está activa */
    .nav-item[b-n2tpjrtgph]  a.active {
        background-color: #ffffff !important; /* Fondo blanco */
        color: #000000 !important; /* Texto negro */
    }

        /* Forzamos que el icono de la opción activa pase a negro */
        .nav-item[b-n2tpjrtgph]  a.active .bi {
            color: #000000 !important;
        }

/* El título "Peluquería Viana" arriba en el sidebar */
.navbar-brand[b-n2tpjrtgph] {
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    letter-spacing: 1px;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-n0k2ayhuat],
.components-reconnect-repeated-attempt-visible[b-n0k2ayhuat],
.components-reconnect-failed-visible[b-n0k2ayhuat],
.components-pause-visible[b-n0k2ayhuat],
.components-resume-failed-visible[b-n0k2ayhuat],
.components-rejoining-animation[b-n0k2ayhuat] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-n0k2ayhuat],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-n0k2ayhuat],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-n0k2ayhuat],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-n0k2ayhuat],
#components-reconnect-modal.components-reconnect-retrying[b-n0k2ayhuat],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-n0k2ayhuat],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-n0k2ayhuat],
#components-reconnect-modal.components-reconnect-failed[b-n0k2ayhuat],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-n0k2ayhuat] {
    display: block;
}


#components-reconnect-modal[b-n0k2ayhuat] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-n0k2ayhuat 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-n0k2ayhuat 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-n0k2ayhuat 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-n0k2ayhuat]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-n0k2ayhuat 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-n0k2ayhuat {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-n0k2ayhuat {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-n0k2ayhuat {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-n0k2ayhuat] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-n0k2ayhuat] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-n0k2ayhuat] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-n0k2ayhuat] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-n0k2ayhuat] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-n0k2ayhuat] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-n0k2ayhuat] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-n0k2ayhuat 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-n0k2ayhuat] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-n0k2ayhuat {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
