/* /Components/Footer/Footer.razor.rz.scp.css */

.site-footer[b-9hsu1st69a] {
    background-color: #0D131B;
    color: #f0f0f0;
    padding: 60px 5%;
    width: 100%;
    box-sizing: border-box;
}

.footer-container[b-9hsu1st69a] {
    max-width: 1350px;
    margin: 0 auto;
    display: grid; /* <-- CAMBIO CLAVE: de Flex a Grid */
    grid-template-columns: 1fr 1fr 1fr; /* Tres columnas de igual tamaño */
    align-items: center; /* Centra verticalmente los 3 bloques */
}

    /* --- Alineación de las 3 columnas --- */
    .footer-container > .footer-brand[b-9hsu1st69a] {
        justify-self: start; /* Col 1 a la izquierda */
        transform: translateX(30px);
    }

    .footer-container > .footer-column:nth-child(2)[b-9hsu1st69a] { /* "Recursos" */
        justify-self: center; /* Col 2 al centro */
        text-align: left; /* Asegura que el texto interno esté a la izquierda */
        transform: translateX(-160px);
    }

    .footer-container > .footer-column:nth-child(3)[b-9hsu1st69a] { /* "Compañía" */
        justify-self: end; /* Col 3 a la derecha */
        text-align: left; /* Asegura que el texto interno esté a la izquierda */
        transform: translateX(-190px);
    }


/* --- Columna 1: Marca/Logo --- */
.footer-brand[b-9hsu1st69a] {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .footer-brand img[b-9hsu1st69a] {
        width: 130px;
        height: 130px;
    }

.brand-text[b-9hsu1st69a] {
    display: flex;
    flex-direction: column;
}

    .brand-text strong[b-9hsu1st69a] {
        font-size: 18px;
        font-weight: 600;
        color: #fff;
    }

    .brand-text span[b-9hsu1st69a] {
        font-size: 14px;
        color: #c0c0c0;
    }

/* --- Columnas 2 y 3: Enlaces --- */

/* REGLA ELIMINADA: .footer-links-wrapper ya no existe */

.footer-column[b-9hsu1st69a] {
    /* border-left: 1px solid rgba(255, 255, 255, 0.25); <-- ELIMINADO */
    padding-left: 60px; /* Espacio para la barra */
    position: relative; /* <-- AÑADIDO: Necesario para la barra */
}

    /* La nueva barra vertical  */
    .footer-column[b-9hsu1st69a]::before {
        content: '';
        position: absolute;
        left: 0; /* A la izquierda del padding */
        top: 50%; /* Centrada verticalmente */
        transform: translateY(-50%); /* Ajuste fino de centrado */

        height: 100px; /* <-- BARRA CORTA (Ajusta este valor si quieres) */
        width: 3px; /* <-- BARRA GRUESA (Ajusta este valor si quieres) */

        background-color: rgba(255, 255, 255, 0.25);
    }

    .footer-column h4[b-9hsu1st69a] {
        font-size: 16px;
        font-weight: 600;
        color: #fff;
        margin-top: 0;
        margin-bottom: 18px;
    }

    .footer-column ul[b-9hsu1st69a] {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-column li[b-9hsu1st69a] {
        margin-bottom: -10px;
    }

    .footer-column a[b-9hsu1st69a] {
        color: #c0c0c0;
        text-decoration: none;
        font-size: 12px;
        transition: color 0.2s ease-in-out;
    }

        .footer-column a:hover[b-9hsu1st69a] {
            color: #fff;
        }


/* --- Media Query para Tablets y Móviles (Menos de 900px) --- */
@media (max-width: 900px) {

    .site-footer[b-9hsu1st69a] {
        padding: 40px 20px; /* Reducimos un poco el padding general */
    }

    .footer-container[b-9hsu1st69a] {
        display: flex; /* Cambiamos Grid por Flex para apilar verticalmente */
        flex-direction: column;
        align-items: center; /* Centra todo horizontalmente */
        gap: 40px; /* Espacio entre el logo y las columnas */
    }

        /* --- RESETEO IMPORTANTE DE POSICIONES --- */
        /* Esto elimina los movimientos forzados (translateX) que pusiste en escritorio */
        .footer-container > .footer-brand[b-9hsu1st69a],
        .footer-container > .footer-column:nth-child(2)[b-9hsu1st69a],
        .footer-container > .footer-column:nth-child(3)[b-9hsu1st69a] {
            transform: none !important; /* Quita el desplazamiento */
            justify-self: auto;
            text-align: center; /* Centra el texto dentro de cada bloque */
            width: 100%; /* Asegura que ocupen el ancho disponible */
        }

    /* --- Ajustes del Logo --- */
    .footer-brand[b-9hsu1st69a] {
        justify-content: center; /* Centra la imagen del logo */
        margin-bottom: 10px;
    }

    /* --- Ajustes de las Columnas --- */
    .footer-column[b-9hsu1st69a] {
        padding-left: 0; /* Quitamos el espacio que era para la barra */
        display: flex;
        flex-direction: column;
        align-items: center; /* Centra los títulos y listas */
    }

        /* Ocultamos las barras verticales en móvil */
        .footer-column[b-9hsu1st69a]::before {
            display: none;
        }

        /* Opcional: Separación extra entre items de lista para que sea más fácil tocar con el dedo */
        .footer-column li[b-9hsu1st69a] {
            margin-bottom: 10px;
        }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-89nxhicqsk] {
    position: relative;
}

.sidebar[b-89nxhicqsk] {
    width: 100%;
    position: fixed;
    z-index: 10;
    box-sizing: border-box;
}

.content[b-89nxhicqsk] {
    position: relative;
    z-index: 1;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar[b-o5xdjikzld] {
    padding: 1.2rem 0;
}

.container-fluid[b-o5xdjikzld] {
    padding-left: 3rem;
    padding-right: 3rem;
}

@media (max-width: 992px) {
    .navbar[b-o5xdjikzld] {
        padding: 1.5rem 2rem;
    }
}

@media (max-width: 576px) {
    .navbar[b-o5xdjikzld] {
        padding: 1rem;
    }
}

.background-blur[b-o5xdjikzld] {
    background-color: rgba(0, 0, 0, 0.01);
    backdrop-filter: blur(5px);
}

.navbar-brand[b-o5xdjikzld] {
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

    .navbar-brand span[b-o5xdjikzld] {
        font-size: 0.8rem;
        font-weight: 400;
        color: #bcbcbc;
        display: block;
        line-height: 1;
    }

.nav-link[b-o5xdjikzld] {
    color: #fff;
    margin: 0 1rem;
    transition: color 0.3s;
    position: relative;
}

    .nav-link[b-o5xdjikzld]::after {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 100%;
        height: 2px;
        background: #e33eb5;
        opacity: 0;
        transform: scaleX(0);
        transition: opacity 0.3s, transform 0.3s;
    }

    .nav-link:hover[b-o5xdjikzld],
    .nav-link.active[b-o5xdjikzld] {
        color: #e33eb5 !important;
    }

        .nav-link:hover[b-o5xdjikzld]::after,
        .nav-link.active[b-o5xdjikzld]::after {
            opacity: 1;
            transform: scaleX(1);
        }

.btn-login[b-o5xdjikzld] {
    width: 100px;
    background-color: #FE00E4;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.3s;
}

    .btn-login:hover[b-o5xdjikzld] {
        background-color: #c32d9c;
    }

.btn-login-staging[b-o5xdjikzld] {
    background-color: #ffc107;
    color: #000;
}

.btn-login-staging:hover[b-o5xdjikzld] {
    background-color: #e0a800;
    color: #000;
}

.btn-login-dev[b-o5xdjikzld] {
    background-color: #dc3545;
}

.btn-login-dev:hover[b-o5xdjikzld] {
    background-color: #b02a37;
}

.brand-logo-hover[b-o5xdjikzld] {
    transition: transform 0.3s ease;
}

    .brand-logo-hover:hover[b-o5xdjikzld] {
        transform: scale(1.15);
    }

.custom-toggler[b-o5xdjikzld] {
    border: none !important;
    background: transparent !important;
    padding: 5px;
    font-size: 1.8rem;
    color: #fff;
    transition: transform 0.3s ease, color 0.3s ease;
    box-shadow: none !important;
}

    .custom-toggler:hover[b-o5xdjikzld] {
        color: #FE00E4;
        transform: scale(1.1);
    }

    .custom-toggler:focus[b-o5xdjikzld] {
        outline: none;
        box-shadow: none;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-0fb8eamqx1],
.components-reconnect-repeated-attempt-visible[b-0fb8eamqx1],
.components-reconnect-failed-visible[b-0fb8eamqx1],
.components-pause-visible[b-0fb8eamqx1],
.components-resume-failed-visible[b-0fb8eamqx1],
.components-rejoining-animation[b-0fb8eamqx1] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-0fb8eamqx1],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-0fb8eamqx1],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-0fb8eamqx1],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-0fb8eamqx1],
#components-reconnect-modal.components-reconnect-retrying[b-0fb8eamqx1],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-0fb8eamqx1],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-0fb8eamqx1],
#components-reconnect-modal.components-reconnect-failed[b-0fb8eamqx1],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-0fb8eamqx1] {
    display: block;
}


#components-reconnect-modal[b-0fb8eamqx1] {
    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-0fb8eamqx1 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-0fb8eamqx1 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-0fb8eamqx1 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-0fb8eamqx1]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-0fb8eamqx1 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-0fb8eamqx1 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-0fb8eamqx1 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-0fb8eamqx1 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-0fb8eamqx1] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-0fb8eamqx1] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-0fb8eamqx1] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-0fb8eamqx1] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-0fb8eamqx1] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-0fb8eamqx1] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-0fb8eamqx1] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-0fb8eamqx1 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-0fb8eamqx1] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-0fb8eamqx1 {
    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;
    }
}
/* /Components/LoginModal.razor.rz.scp.css */
/* Backdrop */
.login-modal-backdrop[b-qjrz7lin7w] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 40px;
    padding-right: 30px;
    z-index: 9999;
    animation: fadeIn-b-qjrz7lin7w 0.2s ease-out;
}

/* Modal Container */
.login-modal[b-qjrz7lin7w] {
    background: rgb(34, 48, 66, 80);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 35px;
    width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: slideIn-b-qjrz7lin7w 0.3s ease-out;
}

/* Close Button */
.login-modal-close[b-qjrz7lin7w] {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s, transform 0.2s;
}

.login-modal-close:hover[b-qjrz7lin7w] {
    color: #fff;
    transform: scale(1.1);
}

.login-modal.closing[b-qjrz7lin7w] {
    animation: slideOut-b-qjrz7lin7w 0.25s ease-in forwards;
}

.login-modal-backdrop.closing[b-qjrz7lin7w] {
    animation: fadeOut-b-qjrz7lin7w 0.25s ease-in forwards;
}

/* Logo Section */
.login-modal-logo[b-qjrz7lin7w] {
    text-align: center;
    margin-bottom: 25px;
}

.login-modal-logo img[b-qjrz7lin7w] {
    margin-bottom: 10px;
}

.login-modal-logo h4[b-qjrz7lin7w] {
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0px;
}

.login-modal-logo p[b-qjrz7lin7w] {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin: 0px 0 0;
}

/* Form */
.login-modal-form[b-qjrz7lin7w] {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group[b-qjrz7lin7w] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label[b-qjrz7lin7w] {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    margin-left: 22px;
}

.form-group .form-control[b-qjrz7lin7w] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    padding: 12px 15px;
    font-size: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.form-group .form-control:focus[b-qjrz7lin7w] {
    outline: none;
    border-color: #e91e8c;
    box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.15);
}

.form-group .form-control[b-qjrz7lin7w]::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.error-text[b-qjrz7lin7w] {
    color: #ff6b6b;
    font-size: 0.75rem;
}

.alert-error[b-qjrz7lin7w] {
    background: rgb(211, 59, 178);
    border: 1px solid rgb(211, 59, 178);
    border-radius: 8px;
    color: #ff6b6b;
    padding: 10px 12px;
    font-size: 0.85rem;
    text-align: center;
}

/* Buttons */
.btn-ingresar[b-qjrz7lin7w] {
    background: rgb(211, 59, 178);
    border: none;
    border-radius: 25px;
    color: #fff;
    font-weight: 600;
    padding: 11px 60px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 5px;
    max-width: 230px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}



.btn-ingresar:hover:not(:disabled)[b-qjrz7lin7w] {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(233, 30, 140, 0.4);
}

.btn-ingresar:disabled[b-qjrz7lin7w] {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-registrar[b-qjrz7lin7w] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: #fff;
    font-weight: 500;
    padding: 11px 48px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    max-width: 230px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.btn-registrar:hover[b-qjrz7lin7w] {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Social Login */
.login-modal-social[b-qjrz7lin7w] {
    text-align: center;
    margin-top: 10px;
    padding-top: 15px;

}

.login-modal-social p[b-qjrz7lin7w] {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.social-icons[b-qjrz7lin7w] {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-icon[b-qjrz7lin7w] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: transform 0.2s;
}

.social-icon:hover[b-qjrz7lin7w] {
    transform: scale(1.15);
}

.social-icon img[b-qjrz7lin7w] {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.social-icon:hover img[b-qjrz7lin7w] {
    opacity: 1;
}

/* Footer with Environment Info */
.login-modal-env-footer[b-qjrz7lin7w] {
    text-align: center;
    margin-top: 10px;
    padding-top: 16px;
}

.login-modal-env-footer p[b-qjrz7lin7w] {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.72rem;
    margin-bottom: 3px;
    letter-spacing: 0.3px;
}

.env-link[b-qjrz7lin7w] {
    background: none;
    border: none;
    color: #e91e8c;
    cursor: pointer;
    font-size: inherit;
    text-decoration: none;
    padding: 0;
    font-weight: 500;
    transition: color 0.2s ease;
}

.env-link:hover[b-qjrz7lin7w] {
    color: #ff69b4;
    text-decoration: underline;
}

.env-chips[b-qjrz7lin7w] {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.env-chip[b-qjrz7lin7w] {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.65rem;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 400;
    letter-spacing: 0.2px;
    backdrop-filter: blur(4px);
}

.env-chip-clickable[b-qjrz7lin7w] {
    cursor: pointer;
    transition: all 0.2s ease;
}

.env-chip-clickable:hover[b-qjrz7lin7w] {
    background: rgba(233, 30, 140, 0.12);
    border-color: rgba(233, 30, 140, 0.25);
    color: rgba(255, 255, 255, 0.75);
}


/* Environment & Version Modal */
.env-modal-backdrop[b-qjrz7lin7w] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(107, 120, 156, 0.332);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn-b-qjrz7lin7w 0.2s ease-out;
}

.env-modal[b-qjrz7lin7w] {
    background: rgb(34, 48, 66, 80);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.env-modal-header[b-qjrz7lin7w] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.env-modal-header h5[b-qjrz7lin7w] {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.env-modal-close[b-qjrz7lin7w] {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

.env-modal-close:hover[b-qjrz7lin7w] {
    color: #fff;
}

.env-modal-description[b-qjrz7lin7w] {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-bottom: 16px;
}

/* Environment List */
.env-list[b-qjrz7lin7w] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.env-option[b-qjrz7lin7w] {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.env-option:hover[b-qjrz7lin7w] {
    background: rgba(255, 255, 255, 0.06);
}

.env-option input[type="radio"][b-qjrz7lin7w] {
    margin-top: 4px;
    accent-color: #e91e8c;
}

.env-option-info[b-qjrz7lin7w] {
    flex: 1;
}

.env-option-name[b-qjrz7lin7w] {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.env-option-url[b-qjrz7lin7w] {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin-top: 2px;
}

.env-warning[b-qjrz7lin7w] {
    color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
    padding: 12px;
    border-radius: 8px;
    font-size: 0.85rem;
}

/* Version Sections */
.version-section[b-qjrz7lin7w] {
    margin-bottom: 16px;
}

.version-section h6[b-qjrz7lin7w] {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.version-item[b-qjrz7lin7w] {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-bottom: 4px;
}

.version-list[b-qjrz7lin7w] {
    margin: 4px 0 0 16px;
    padding: 0;
    list-style: disc;
}

.version-list li[b-qjrz7lin7w] {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    margin-bottom: 2px;
}

.version-loading[b-qjrz7lin7w] {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    padding: 20px 0;
}

.spinner[b-qjrz7lin7w] {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-top-color: #e91e8c;
    border-radius: 50%;
    animation: spin-b-qjrz7lin7w 0.8s linear infinite;
}

@keyframes spin-b-qjrz7lin7w {
    to {
        transform: rotate(360deg);
    }
}

.version-error[b-qjrz7lin7w] {
    color: #ff6b6b;
    background: rgba(255, 100, 100, 0.1);
    padding: 12px;
    border-radius: 8px;
    font-size: 0.85rem;
}

/* Modal Action Buttons */
.env-modal-actions[b-qjrz7lin7w] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary[b-qjrz7lin7w] {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: background 0.2s;
}

.btn-secondary:hover[b-qjrz7lin7w] {
    background: rgba(255, 255, 255, 0.1);
}

.btn-primary[b-qjrz7lin7w] {
    background: #e91e8c;
    border: none;
    color: #fff;
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background 0.2s;
}

.btn-primary:hover[b-qjrz7lin7w] {
    background: #c4176f;
}

/* Animations */
@keyframes fadeIn-b-qjrz7lin7w {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn-b-qjrz7lin7w {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut-b-qjrz7lin7w {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(30px);
    }
}

@keyframes fadeOut-b-qjrz7lin7w {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 576px) {
    .login-modal-backdrop[b-qjrz7lin7w] {
        padding: 20px;
        justify-content: center;
        align-items: center;
    }

    .login-modal[b-qjrz7lin7w] {
        width: 100%;
        max-width: 340px;
    }

    .env-modal[b-qjrz7lin7w] {
        width: 95%;
        margin: 10px;
    }
}
/* /Components/Page/NotFound.razor.rz.scp.css */
.not-found[b-jir6s9kv6k] {
    min-height: calc(100vh - 6rem);
    display: grid;
    place-items: center;
    padding: clamp(2rem, 6vw, 3.5rem);
    background: radial-gradient(120% 120% at 15% 20%, #23324a 0%, #131b2a 48%, #0d1420 100%);
    color: #e9edf5;
}

.not-found__card[b-jir6s9kv6k] {
    width: min(680px, 100%);
    padding: clamp(2rem, 5vw, 3rem);
    background: rgba(21, 28, 41, 0.9);
    border: 1px solid #2c3b55;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(3px);
}

.not-found__badge[b-jir6s9kv6k] {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #2ea6ff, #6f7cff);
    color: #0c1320;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.not-found h1[b-jir6s9kv6k] {
    margin: 1.25rem 0 0.5rem;
    font-size: clamp(2rem, 4vw, 2.4rem);
    font-weight: 800;
}

.not-found p[b-jir6s9kv6k] {
    margin: 0 0 1.5rem;
    color: #cfd6e4;
    font-size: 1.05rem;
    line-height: 1.6;
}

.not-found__actions[b-jir6s9kv6k] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.not-found__actions .btn[b-jir6s9kv6k] {
    min-width: 150px;
    border-radius: 12px;
    font-weight: 700;
    padding: 0.75rem 1.25rem;
}

.not-found__actions .btn-outline-light[b-jir6s9kv6k] {
    border-color: #3d4f6a;
    color: #e9edf5;
    background-color: transparent;
}

.not-found__actions .btn-outline-light:hover[b-jir6s9kv6k],
.not-found__actions .btn-outline-light:focus[b-jir6s9kv6k] {
    background-color: rgba(255, 255, 255, 0.07);
    border-color: #6f7cff;
    color: #ffffff;
}

@media (max-width: 640px) {
    .not-found__card[b-jir6s9kv6k] {
        text-align: center;
    }

    .not-found__actions[b-jir6s9kv6k] {
        justify-content: center;
    }
}
