html, body {
    height: 100%;
}

app {
    display: block;
    height: 100%;
}

/*.header-logo {
    flex-shrink: 0;
    background-color: currentColor;
    -webkit-mask: url('../images/Logo.svg');
    mask: url('../images/Logo.svg');
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    width: 180px;
    height: 24px;
}*/

.header-logo {
    flex-shrink: 0;
    background-color: transparent;
    background-image: url('../images/logo.png');
    background-position: center;
    background-repeat: no-repeat;
    width: 180px;
    height: 30px;
}

#blazor-error-ui {
    background: inherit;
    bottom: 0;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100001;
}



/* Panbtalla de bloqueo */

.pantalla-bloqueo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner::before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin-top: -15px;
    margin-left: -15px;
    border-radius: 50%;
    border: 2px solid #ccc;
    border-top-color: #333;
    animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

/* Fin de pantalla de bloqueo */



.btn-pequenho {
    margin-left: 10px;
    background: #16b531;
    border-radius: 4px;
    padding: 2px;
    padding-left: 5px;
    padding-right: 5px;
}

.mouseMano {
    cursor: pointer;
}


.columna2_1fr_300px {
    display: grid;
    grid-template-columns: 1fr 300px; /* La primera columna ocupa el espacio restante y la segunda tiene un ancho fijo de 200px */
    gap: 20px; /* Espacio entre columnas */
    align-items: start; /* Alinea elementos al inicio (parte superior) */
}


.acciones {
    padding: 10px;
    display: block;
}


.p-20px {
    padding:20px;
}


.container_autenticacion {
    display: grid;
    grid-template-columns: 80px auto;
    align-items: center;
    gap: 10px;
    border: 1px solid #ccc;
    padding: 10px;
    max-width: 600px;
}

    .container_autenticacion img {
        width: auto;
        height: 60px;
        object-fit: cover;
    }