/*Estilos GEnerales: para todos los elementos de la página*/

*{
    margin: 0px; /*Que no tengan ningún tipo de margen*/
    padding: 0px; /*Que no tenga ningun margen interno*/
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-decoration: none; /*Sin ningún estilo*/
}

body{
    background-color: #f2f2f2;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 20px;
    
}



.clearfix{
    clear: both;
    float: none;

}



/*Estilos Cabecera*/

header{
    width: 1250px;
    height: 100px;
    background-color: #ffffff;
    margin: 0px auto; /*para centrar, se le pueden agregar margenes px*/
}

/*Se usa # para cuando es un id, un elemento que no se usará más de una vez*/
#logotipo{
    width: 80%;
    height: 130px;
    margin: 0 auto;
    padding-top: 10px;
}

#logotipo img{
    display: block; /*para manipularlo*/
    width: 240px;
    float: left;
    margin-top: 20px; /*margen haciaa abajo*/
}

#logotipo h1{
    display: block; /*para que se pueda manipular*/
    letter-spacing: 2px;
    float: right;
    margin-top: 20px;
    margin-left: 20px;
    /*text-transform: uppercase; para que lo ponga en mayúscula*/
    font-weight: lighter;
    color: #0055a5;
}

/*Estilo Barra Navegación*/
nav {
    width: 1250px;
    height: 40px;
    margin: 0 auto;
    background-color: #1b1e1f;
    border: 1px solid #333333;
    box-shadow: 0px 22px 22px gray;
    font-size: 15px;
    position: relative; /* Cambié a relative para asegurar el contexto de apilamiento */
    z-index: 10; /* Asegura que la barra de navegación se mantenga encima */
}
/*Al poner el > quiere decir que se va directamente elementos inmediatos*/
nav > ul{
    list-style: none;
    text-decoration: none;
}

nav > ul > li{
    line-height: 40px;
    float: left;
}

nav > ul > li > a{
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    color: #d1d4d6;
}

nav > ul > li > a:hover{ /*Para que se note mientras pasa por los elementos el curso*/
    background: #0055a5;
    box-shadow: 0px 0px 5px #444 inset;  /*Inset efecto de hundido*/
    color: white;
    transition: all 300ms; /*para que tenga un efecto*/
}

nav > ul > li > ul{
    display: none;
    /*position: absolute;*/
    color: white;
    text-align: left;
    width: 160px;
    box-shadow: 0px 2px 2px gray;
}

nav > ul > li:hover > ul { 
    display: block;
    color: white;
    margin: 0px;
    list-style: none;
}

nav > ul > li:hover > ul > li { 
    background: #f2f2f0;
    border-bottom: 1px solid #d6d6d6;
    padding: 8px;
    line-height: 25px;
    font-size: 13px;
    transition: all 300ms;
}

nav > ul > li:hover > ul > li a { 
    color: #666;
    transition: all 300ms;

}
nav > ul > li:hover > ul > li:hover{ 
    background-color: #0055a5;
    transition: all 300ms;
}
nav > ul > li:hover > ul > li:hover a{ 
    display: block;
    color: white;
    transition: all 300ms;
}


.barra{
    width: 1250px;
    margin: 0 auto;
    
}

.esquina-izquierda{
    display: block;
    border-left: 20px solid transparent;
    border-top: 10px solid #2b2f30; 
    float: left;

}

.esquina-derecha{
    display: block;
    border-right: 20px solid transparent;
    border-top: 10px solid #2b2f30; 
    float: right;
}

.relleno-barra{
    display: block;
    width: 1210px;
    background: #2b2f30;
    height: 10px;
    float: left;
}

/*Estilo del Contenido Central*/

#content{
    width: 1212px;
    min-height: 930px; /*Altura mínima*/
    margin: 0 auto;
    margin-bottom: 30px;
    margin-top: 40px;
}

.box{
    background: white;
    width: 95%;
    min-height: 980px;
    padding: 20px;
    border: 1px solid #ddd;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-sizing: border-box; 
} 

.box .image{
    width: 45%;
    float: left;
    margin-right: 40px;
}

.box .image img{
    width: 100%;
}

.box a{
    transition: all 300ms;
    color: #444;
}

.box a:hover {
    transition: all 100ms;
    color: #0055a5;
}


.box p,.box h2,.box h3,.box ul{
    margin-top: px;
    margin-bottom: 5px;

}

.box ul, .box ol{
    margin-left: 20px;
    margin-bottom: 10px;
}


.rojo {
    color: red;
    text-shadow: 0px 0px 4px black;

}
.message, 
.alert-success,
.alert {

    padding: 20px;
    background: #5cdbce;
    color: white;
    text-align: center;
    margin-bottom: 10px;
}

.alert-warning {
    background: #bd0000;
    
}

.box form{
    width: 40%;
}

/*Para que el formato de cada línea sea independiente*/
.box form input,
.box form label{
    display: block;
    padding: 5px;
    padding-left:0px;
}


.box form input[type="text"],
.box form input[type="email"],
.box form input[type="password"],
.box form textarea,
.box form select
{
    width: 100%;
    margin-bottom: 10px;

}


.box form input[type="file"] {
    display: block;  /* Asegúrate de que los campos de entrada de archivos se muestran como bloque */
    margin-top: 10px;
}

.box form select{
   
    padding: 5px;
}

.box form input[type="submit"],
.box form input[type="button"],
.box form button{
    padding:10px;
    margin-top: 5px;
    background: #0055a5;
    border: 1px solid #ddd;
    color: #ddd;
    transition: 300ms all;
}

.box form input[type="submit"]:hover,
.box form input[type="button"]:hover,
.box form button:hover{
    cursor: pointer;
    background: #0055a5;
    
}


.title{
    color: #444;
    letter-spacing: 1px;
    font-size: 30px;
    margin-bottom: 10px;
    margin-top: 5px;
}

.date {
    display: block;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 15px;
    color: gray;
    
}    

.content{
    line-height: 25px;

}



.article-item{
    margin-bottom: 20px;
    margin-top: 20px;
    padding: 15px;
    border-bottom: 1px solid #eee;
    clear: both; /*se alinean todos los elementos*/
}

.article-item .image{
    width: 200px;
    height: 200px;
    float: left;
    overflow: hidden; /*lo que sobre se oculta  */
}


.article-item .image img{
    height: 200px;
}    

.article-item .data{
    float: left;
    padding: 15px;
    padding-top: 0px;
    
}    


.article-item h2 {
    display: block;
    font-size: 25px;
    color: #333;
    margin-bottom: 10px;
}    

.article-item span.date {
    display: block;
    font-size: 15px;
    color: gray;
    margin-bottom: 10px;
}    


/* Estilo base para botones */
.btn {
    display: flex; /* Cambiado a flex para alineación */
    justify-content: center; /* Centrar contenido horizontalmente */
    align-items: center; /* Centrar contenido verticalmente */
    padding: 5px 10px; /* Espaciado reducido */
    background: rgb(219, 55, 55); /* Fondo rojo */
    color: white; /* Texto blanco */
    
    margin: 5px; /* Espaciado entre botones */
    width: auto; /* Ajustar el ancho dinámicamente */
    text-align: center;
    font-size: 14px; /* Tamaño de texto reducido */
}

/* Estilo para el contenedor de botones */
.btn-group {
    display: flex; /* Alineación en la misma línea */
    gap: 10px; /* Espaciado entre los botones */
}

/* Estilo para el botón de aceptar (color verde con palomita) */
.btn-success {
    background-color: #28a745 !important; /* Verde */
    color: white;
}

.btn-success:hover {
    background-color: #218838;
}

/* Estilo personalizado para el botón de aceptar */
.btn-aceptar {
    font-weight: bold;
    letter-spacing: 1px;
}

/* Estilo para el botón de rechazar (color rojo con cruz) */
.btn-danger {
    background-color: #dc3545 !important; /* Rojo */
    color: white;
}

.btn-danger:hover {
    background-color: #c82333;
}

/* Estilo personalizado para el botón de rechazar */
.btn-rechazar {
    font-weight: bold;
    letter-spacing: 1px;
}

/* Estilo para los íconos dentro de los botones */
.btn i {
    margin-right: 5px; /* Espacio entre el icono y el texto */
    font-size: 16px; /* Tamaño del icono ajustado */
}


footer{
    width: 1250px;
    background-color: #1b1e1f;
    border: 1px solid #333;
    color: #d1d4d6;
    text-align: center;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 20px;
    box-shadow: 0px 0px 20px gray;

}


/* Wrapper para permitir desplazamiento horizontal y vertical */
.table-wrapper {
    width: 100%;
    max-height: 500px;
    overflow-x: auto;
    overflow-y: auto;
    margin: 0 auto 80px;
    padding: 0; /* Eliminado el padding lateral */
    box-sizing: border-box;
    position: relative;
}

/* Estilo base de la tabla */
.fl-table {
    border-radius: 5px;
    font-size: 14px;
    font-weight: normal;
    border: none;
    border-collapse: collapse;
    width: 100%;
    min-width: 1300px; /* Aumentado para la nueva columna */
    table-layout: fixed;
    background-color: white;
    position: relative;
    margin: 0;
}




.fl-table td, .fl-table th {
    text-align: left;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #f8f8f8;
}

/* Celdas de datos */
.fl-table td {
    font-size: 14px;
}

/* Encabezados inmóviles base */
.fl-table thead th {
    position: sticky;
    top: 0;
    background-color: white;
    color: #ffffff;
    padding: 8px;
    overflow: visible;
}

/* Alternancia de colores en encabezados */
.fl-table thead th:nth-child(odd) {
    background-color: #324960;
}

.fl-table thead th:nth-child(even) {
    background-color: #4FC3A1;
}

/* Cambiar el color de la primera celda del encabezado */
.fl-table thead th:first-child {
    background-color: #324960 !important; /* Color oscuro */
    color: white !important; /* Texto en blanco */
    text-align: center; /* Centrar contenido */
}
/* Ancho específico para cada columna fija */
/* Primera columna - Checkbox */
.fl-table th:nth-child(1),
.fl-table td:nth-child(1) {
    width: 50px;  /* Espacio para el checkbox */
    min-width: 50px;
    max-width: 50px;
    text-align: center;
}

/* Segunda columna - Depto (ampliada) */
.fl-table th:nth-child(2),
.fl-table td:nth-child(2) {
    width: 80px;
    min-width: 80px;
    max-width: 80px;
}

/* Tercera columna - Monto */
.fl-table th:nth-child(3),
.fl-table td:nth-child(3) {
    width: 120px;
    min-width: 120px;
    max-width: 120px;
}

/* Cuarta a sexta columna - Concepto, Solicitante, Proveedor */
.fl-table th:nth-child(4),
.fl-table td:nth-child(4),
.fl-table th:nth-child(5),
.fl-table td:nth-child(5),
.fl-table th:nth-child(6),
.fl-table td:nth-child(6) {
    width: 200px;
    min-width: 200px;
    max-width: 200px;
}

/* Resto de las columnas */
.fl-table th:not(:nth-child(-n+6)),
.fl-table td:not(:nth-child(-n+6)) {
    width: 100px;
    min-width: 100px;
    max-width: 100px;
}

/* Posiciones específicas para columnas fijas en thead y tbody */
/* Checkbox */
.fl-table thead th:nth-child(1),
.fl-table tbody td:nth-child(1) {
    position: sticky;
    left: 0;
    background-color: white;
    z-index: 51;
}

/* Segunda columna - Depto */
.fl-table thead th:nth-child(2),
.fl-table tbody td:nth-child(2) {
    position: sticky;
    left: 50px; /* suma del ancho de columna 1 */
}

/* Tercera columna - Monto */
.fl-table thead th:nth-child(3),
.fl-table tbody td:nth-child(3) {
    position: sticky;
    left: 130px; /* 50 + 80 */
}

/* Cuarta columna - Concepto */
.fl-table thead th:nth-child(4),
.fl-table tbody td:nth-child(4) {
    position: sticky;
    left: 250px; /* 50 + 80 + 120 */
}

/* Quinta columna - Solicitante */
.fl-table thead th:nth-child(5),
.fl-table tbody td:nth-child(5) {
    position: sticky;
    left: 450px; /* 50 + 80 + 120 + 200 */
}

/* Sexta columna - Proveedor */
.fl-table thead th:nth-child(6),
.fl-table tbody td:nth-child(6) {
    position: sticky;
    left: 650px; /* 50 + 80 + 120 + 200 + 200 */
}

/* Z-index para thead */
.fl-table thead th:nth-child(1) { z-index: 52; }
.fl-table thead th:nth-child(2) { z-index: 51; }
.fl-table thead th:nth-child(3) { z-index: 50; }
.fl-table thead th:nth-child(4) { z-index: 49; }
.fl-table thead th:nth-child(5) { z-index: 48; }
.fl-table thead th:nth-child(6) { z-index: 47; }

/* Z-index para tbody */
.fl-table tbody td:nth-child(1) { z-index: 42; background: #f8f8f8; }
.fl-table tbody td:nth-child(2) { z-index: 41; background: #f8f8f8; }
.fl-table tbody td:nth-child(3) { z-index: 40; background: #f8f8f8; }
.fl-table tbody td:nth-child(4) { z-index: 39; background: #f8f8f8; }
.fl-table tbody td:nth-child(5) { z-index: 38; background: #f8f8f8; }
.fl-table tbody td:nth-child(6) { z-index: 37; background: #f8f8f8; }

/* Manejo de texto largo */
.fl-table td:nth-child(4),
.fl-table td:nth-child(5),
.fl-table td:nth-child(6) {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

/* Sombras para las columnas fijas */
.fl-table thead th:nth-child(6),
.fl-table tbody td:nth-child(6) {
    box-shadow: 4px 0 5px rgba(0, 0, 0, 0.1);
}

/* Checkbox alineado */
.fl-table input[type="checkbox"] {
    transform: scale(1.2);
    cursor: pointer;
}




/* Wrapper para permitir desplazamiento horizontal y vertical */
.table-wrapper-7 {
    width: 100%;
    max-height: 500px;
    overflow-x: auto;
    overflow-y: auto;
    margin: 0 auto 80px;
    padding: 0; /* Eliminado el padding lateral */
    box-sizing: border-box;
    position: relative;
}

/* Estilo base de la tabla */
.f1-table-7 {
    border-radius: 5px;
    font-size: 14px;
    font-weight: normal;
    border: none;
    border-collapse: collapse;
    width: 100%;
    min-width: 1300px; /* Aumentado para la nueva columna */
    table-layout: fixed;
    background-color: white;
    position: relative;
    margin: 0;
}




.f1-table-7 td, .f1-table-7 th {
    text-align: left;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #f8f8f8;
}

/* Celdas de datos */
.f1-table-7 td {
    font-size: 14px;
}

/* Encabezados inmóviles base */
.f1-table-7 thead th {
    position: sticky;
    top: 0;
    background-color: white;
    color: #ffffff;
    padding: 8px;
    overflow: visible;
}

/* Alternancia de colores en encabezados */
.f1-table-7 thead th:nth-child(odd) {
    background-color: #324960;
}

.f1-table-7 thead th:nth-child(even) {
    background-color: #4FC3A1;
}

/* Cambiar el color de la primera celda del encabezado */
.f1-table-7 thead th:first-child {
    background-color: #324960 !important; /* Color oscuro */
    color: white !important; /* Texto en blanco */
    text-align: center; /* Centrar contenido */
}
/* Ancho específico para cada columna fija */
/* Primera columna - Checkbox */
.f1-table-7 th:nth-child(1),
.f1-table-7 td:nth-child(1) {
    width: 50px;  /* Espacio para el checkbox */
    min-width: 50px;
    max-width: 50px;
    text-align: center;
}

/* Segunda columna - Depto (ampliada) */
.f1-table-7 th:nth-child(2),
.f1-table-7 td:nth-child(2) {
    width: 80px;
    min-width: 80px;
    max-width: 80px;
}

/* Tercera columna - Monto */
.f1-table-7 th:nth-child(3),
.f1-table-7 td:nth-child(3) {
    width: 120px;
    min-width: 120px;
    max-width: 120px;
}

/* Cuarta a sexta columna - Concepto, Solicitante, Proveedor */
.f1-table-7 th:nth-child(4),
.f1-table-7 td:nth-child(4),
.f1-table-7 th:nth-child(5),
.f1-table-7 td:nth-child(5),
.f1-table-7 th:nth-child(6),
.f1-table-7 td:nth-child(6) {
    width: 200px;
    min-width: 200px;
    max-width: 200px;
}

/* Resto de las columnas */
.f1-table-7 th:not(:nth-child(-n+6)),
.f1-table-7 td:not(:nth-child(-n+6)) {
    width: 100px;
    min-width: 100px;
    max-width: 100px;
}

/* Posiciones específicas para columnas fijas en thead y tbody */
/* Checkbox */
.f1-table-7 thead th:nth-child(1),
.f1-table-7 tbody td:nth-child(1) {
    position: sticky;
    left: 0;
    background-color: white;
    z-index: 51;
}

/* Segunda columna - Depto */
.f1-table-7 thead th:nth-child(2),
.f1-table-7 tbody td:nth-child(2) {
    position: sticky;
    left: 50px; /* suma del ancho de columna 1 */
}

/* Tercera columna - Monto */
.f1-table-7 thead th:nth-child(3),
.f1-table-7 tbody td:nth-child(3) {
    position: sticky;
    left: 130px; /* 50 + 80 */
}

/* Cuarta columna - Concepto */
.f1-table-7 thead th:nth-child(4),
.f1-table-7 tbody td:nth-child(4) {
    position: sticky;
    left: 250px; /* 50 + 80 + 120 */
}

/* Quinta columna - Solicitante */
.f1-table-7 thead th:nth-child(5),
.f1-table-7 tbody td:nth-child(5) {
    position: sticky;
    left: 450px; /* 50 + 80 + 120 + 200 */
}

/* Sexta columna - Proveedor */
.f1-table-7 thead th:nth-child(6),
.f1-table-7 tbody td:nth-child(6) {
    position: sticky;
    left: 650px; /* 50 + 80 + 120 + 200 + 200 */
}

/* Z-index para thead */
.f1-table-7 thead th:nth-child(1) { z-index: 52; }
.f1-table-7 thead th:nth-child(2) { z-index: 51; }
.f1-table-7 thead th:nth-child(3) { z-index: 50; }
.f1-table-7 thead th:nth-child(4) { z-index: 49; }
.f1-table-7 thead th:nth-child(5) { z-index: 48; }
.f1-table-7 thead th:nth-child(6) { z-index: 47; }

/* Z-index para tbody */
.f1-table-7 tbody td:nth-child(1) { z-index: 42; background: #f8f8f8; }
.f1-table-7 tbody td:nth-child(2) { z-index: 41; background: #f8f8f8; }
.f1-table-7 tbody td:nth-child(3) { z-index: 40; background: #f8f8f8; }
.f1-table-7 tbody td:nth-child(4) { z-index: 39; background: #f8f8f8; }
.f1-table-7 tbody td:nth-child(5) { z-index: 38; background: #f8f8f8; }
.f1-table-7 tbody td:nth-child(6) { z-index: 37; background: #f8f8f8; }

/* Manejo de texto largo */
.f1-table-7 td:nth-child(4),
.f1-table-7 td:nth-child(5),
.f1-table-7 td:nth-child(6) {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

/* Sombras para las columnas fijas */
.f1-table-7 thead th:nth-child(6),
.f1-table-7 tbody td:nth-child(6) {
    box-shadow: 4px 0 5px rgba(0, 0, 0, 0.1);
}

/* Checkbox alineado */
.f1-table-7 input[type="checkbox"] {
    transform: scale(1.2);
    cursor: pointer;
}




.truncated {
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
}

.more-text {
    display: none;
}

.read-more {
    color: #0055a5;
    cursor: pointer;
    display: inline-block;
    margin-left: 5px;
    font-size: 12px;
}


/* TITULOS TABLAS  */

 .titulo-tabla {
            padding: 15px 20px;
            border-radius: 12px;
            margin-bottom: 20px;
            font-size: 20px;
            font-weight: bold;
            color: white;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .pendientes {
            background-color: #e74c3c; /* rojo */
        }

        .autorizadas {
            background-color: #f1c40f; /* amarillo fuerte */
            color: #333; /* mejor contraste para fondo amarillo */
        }

        .en-layout {
            background-color: #2ecc71; /* verde */
        }




        

/* Ocultar el scroll horizontal en dispositivos móviles */
@media (max-width: 768px) {
    .fl-table {
        font-size: 12px;
    }
    .fl-table td, .fl-table th {
        padding: 4px;
    }
    .table-wrapper {
        -webkit-overflow-scrolling: touch;
    }
}

.container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 100%; /* Limita el ancho máximo al tamaño disponible */
    overflow-x: auto; /* Permite el desbordamiento horizontal si es necesario */
    padding: 10px; /* Añade un pequeño relleno */
    box-sizing: border-box; /* Incluye padding y border en el tamaño total */
}


/* Ocultar el contenido por defecto */
.section-content {
    display: none;
}

/* Estilos para los títulos (opcional) */
.toggle-section {
    cursor: pointer;
    background-color: #f1f1f1;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
}

.toggle-section:hover {
    background-color: #ddd;
}






.form-container {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    transition: transform 0.2s;
    max-width: 100%; /* Asegura que el contenedor no se desborde */
    overflow: hidden; /* Evita el desbordamiento de contenido */
    box-sizing: border-box; /* Incluye padding y border en el tamaño total */
}

/* Ajusta la tabla dentro de los formularios para que no se desborden */
.form-container table {
    margin-bottom: 20px;
    border: 2px solid #0055a5;
    border-radius: 5px;
    width: 100%; /* Asegura que la tabla ocupe el 100% del ancho del contenedor */
    box-sizing: border-box; /* Incluye padding y border en el tamaño total */
}

.form-container form {
    padding: 20px;
    border: 2px solid #007BFF;
    border-radius: 5px;
    background-color: #ffffff;
    width: 100%; /* Asegura que el formulario ocupe el 100% del contenedor */
    box-sizing: border-box; /* Incluye padding y border en el tamaño total */
}
label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}
button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
button:hover {
    background-color: #0056b3;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
th, td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
    white-space: normal; /* Permite que el texto se divida en varias líneas */
    overflow: hidden; /* Oculta el texto que no cabe */
    max-width: 150px; /* Ajusta el ancho máximo según tus necesidades */
    word-wrap: break-word; /* Permite que las palabras largas se dividan */
}
th {
    background-color: #0055a5;
    color: white;
    border-radius: 5px;
}


.tabla-especial th {
    color: black;
    background-color: yellow;
}
.tabla-especial .falta-por-comprobar {
    background-color: red;
}
.tabla-especial .falta-por-comprobar-0 {
    background-color: green;
}
.tabla-especial .falta-por-comprobar-negativo {
    background-color: orange;
}
.bg-verde-claro {
    background-color: #d4edda; /* Color verde claro */
}

/* Colorea de rojo claro */
.bg-rojo-claro {
    background-color: #f8d7da; /* Color rojo claro */
}


 /* Estilo para el mensaje centrado */
 .message-overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    z-index: 1000;
    display: none; /* Por defecto, oculto */
  }
  .alert-success { background-color: #4CAF50; color: white; }
  .alert-danger { background-color: #f44336; color: white; }
  .alert-warning { background-color: #ff9800; color: white; }