body {
    /*background-color: rgba(102, 236, 113, 0.8); */
    background-color: #eaeaea; /* Reemplaza el valor por el color de fondo que desees */
   /* background-image: linear-gradient(to left, #15b447, #9ce5b3);*/
}

.accion-btn {
    background-color: #eaeaea;
    color: white;
    border: none;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 30px;
    cursor: pointer;
}

/* Estilos para las filas impares */
.table tr:nth-child(odd) {
    background-color: #f7f7f7; /* Cambia el color según tus preferencias */
}

/* Estilos para las filas pares */
.table tr:nth-child(even) {
    background-color: #FFFFFF; /* Cambia el color según tus preferencias */
}

.title {
    color: rgb(1, 4, 2);
    font-size: 60px;
    text-align: center;
    vertical-align: middle;
}

.table {
    border-collapse: collapse;
    width: 100%;
    background-color: #eaeaea;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.8); /* Agrega una sombra */
    table-layout: fixed;
    border-radius: 5px;
}

/* Fondo gris solo para los encabezados */
.table thead tr th {
    background-color: #c0c0c0 !important; /* Gris claro */
    color: #333 !important; /* Texto oscuro */
}

/* Asegurar que las filas de datos sean blancas */
.table tbody tr {
    background-color: #ffffff !important; /* Blanco */
}

/* También quitar cualquier sombreado que pueda afectar */
.table tbody tr:nth-child(odd),
.table tbody tr:nth-child(even) {
    background-color: #ffffff !important;
}

