
/* ********************************************** GRILLAS *********************************************** */
.grid-container-recep1 {
    grid-template-columns: 80px 200px 100px 50px 50px; 
    grid-auto-rows: 50px;  
    height: 70%;
}

.grid-container-recep2 {
    display: grid;
    grid-template-columns: 80px 200px 100px 50px 50px; 
    grid-auto-rows: 50px;
    height: 70%; 
}

/* -------------------------------------------------------------------------------------------------- */
.grid-item {
    display: flex;
    justify-content: center; /* Alinea el contenido horizontalmente */
    align-items: center; /* Alinea el contenido verticalmente */
    padding: 10px;
    border: 1px solid #000;
    text-align: center;
}

/* --------------------------------------- Botones de las grillas -------------------------------------------------- */
.button {
    padding: 5px 10px;
    background-color: #008CBA;
    color: white;
    border: none;
    cursor: pointer;
    display: inline-flex; /* Asegura que los botones se comporten como elementos flexibles */
    justify-content: center;
    align-items: center;
}

/* ------------------------------------------------------------------------------------------------------------------ */

.fila-grilla {
    display: contents; /* Permite que los elementos hijos se comporten como si no tuviera un contenedor adicional */
}

/* ******************************* Botón Guardar ********************************** */
#btnGuardar_form {
    position: absolute;
    width: 7%;
    height: 4%;
    top: 92%;
    left: 50.4%;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    z-index: 999;
}

#btnGuardar_form:hover {
    background-color: #45a049;
}

/* ******************************* Animación Guardar ********************************** */
#loading-container-form {
    display: none;  /* Inicialmente oculto */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#loading-spinner-form {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    animation: spinner-form 1.5s linear infinite;  /* Aquí la duración de la animación */
}

/* Animación de rotación para Formulario */
@keyframes spinner-form {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ************************************************************************************ */