/* Estilos globales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #EFEFEF;
    color: #363639;
    font-family: 'Work Sans', sans-serif;
}

/* Estilos de la tabla */
table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    margin-bottom: 20px;
    border-spacing: 0px;
}

th {
    text-align: center;
    background-color: #04AA6D;
    color: white;
    padding: 10px;
    border: 3px solid #EFEFEF;
}

th.thead-fecha {
    width: 110px
}

thead {
    background-color: #f9f9f9;
    position: sticky;
    top: 0;
    z-index: 1000;
}

td {
    padding: 0px 20px;
}

tr:hover {
    background-color: #D0F7CD;
}

td.cell-fecha {
    padding: 10px 0px;
}

/* Estilos de las celdas aún falta tiempo para iniciar */
.aunFaltaParaFechaCell {
    text-align: center;
    color: steelblue;
    font-weight: bold;
    height: 61px;
}

.contenido {
    margin: auto;
    max-width: 1200px;
    text-align: center;
}

/* Estilos de las celdas de fecha */
.dev-fecha {
    width: fit-content;
    padding: 0 10px;
    color: #04AA6D;
    font-size: 20px;
    font-weight: 700;
    background: #fff;
    height: 40px;
    margin: auto;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.enlace-boton {
    display: block;
    padding: 15px;
    margin: 10px;
    background-color: #04AA6D;
    color: white;
    text-decoration: none;
}

.enlace-boton:hover {

    background-color: #036a44;

}

.elemento-cuenta-regresiva {
    min-width: 30px;
}

/* Estilos de las celdas error fecha */
.errorFechaCell {
    text-align: center;
    color: red;
    font-weight: bold;
    height: 61px;
}

/* Estilos de las celdas finalizadas */
.fechaFinalizaCell {
    text-align: center;
    color: grey;
    font-weight: bold;
    height: 61px;
}

/* Estilos de las filas cliqueables */
.fila-cliqueable {
    height: 60px;
    cursor: pointer;
}

/* Estilos de las filas cliqueables */
.fila {
    border-bottom: 1px solid #ddd;
}

.item-documento-legal {
    padding: 5px;
    list-style: none;
    font-style: italic;
}

/* Estilos de elementos específicos */
.mensaje-informativo {
    padding: 10px 0;
}

.portada {
    display: flex;
    /*justify-content: center;*/
    align-items: center;
    height: 100vh;
}

/* Estilos de las celdas sin fecha */
.sinFechaDefinidaCell {
    text-align: center;
    color: orange;
    font-weight: bold;
    height: 61px;
}

.tabla-solicitudes {
    overflow-x: auto;
}
