body {
    font-family: 'Open Sans', sans-serif;
}

.clockdate-wrapper {
    background-image: linear-gradient(to bottom left, #74a1ff, #2b6099, #07396e);
    padding:25px;
    max-width:300px;
    width:100%;
    text-align:center;
    border-radius:5px;
    margin:0 auto;
    margin-top:0%;
    color: white;
    height: 120px;
}

/*
.clockdate-wrapper {
    background-image: url('../img/ss.png'), linear-gradient(to bottom left, #74a1ff, #2b6099, #07396e);
    background-repeat: repeat;
    background-size: 90px 90px; 
    padding: 25px;
    max-width: 300px;
    width: 100%;
    text-align: center;
    border-radius: 5px;
    margin: 0 auto;
    margin-top: 0%;
    color: white;
    height: 111px;
    position: relative;
}

.clockdate-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom left, #74a1ff, #2b6099, #07396e);
    opacity: 0.85;
    z-index: 1;
    border-radius: 5px;
}

.clockdate-wrapper * {
    position: relative;
    z-index: 2;
}
*/


#clock{
    font-family: sans-serif;
    font-size:60px;
    text-shadow:0px 0px 1px #fff;
    color:#fff;
    height: 90px;
    padding-top: -22px;
}
#clock span {
    color:#ffffff;
    text-shadow:0px 0px 1px #ffffff;
    font-size:30px;
    position:relative;
    top:-27px;
    left:-10px;	
}
#date {	
    letter-spacing:6px;
    font-size:14px;
    font-family: 'Open Sans', sans-serif;
    color:#fff;
    height: 21px;
    margin-top:-8px
}

.titleList{
    width: 100%;
    margin-left: 200px;
    max-width: 300px;
    border-radius: 5px;
    margin: 7px auto;
    text-align:center;
}
.centerdiv {
    background-color: #333;
    width: 100%;
    height: 590px;
    max-width: 365px;
    border-radius: 5px;
    margin: 7px auto;
    padding:15px;
    text-align:center;
}

.table-container {
    max-width: 350px;
    border-radius: 5px;
    margin: 7px auto;
    padding:12px;
    /*background-color: #07396e;*/
    background-image: linear-gradient(to bottom left, #74a1ff, #2b6099, #07396e);

    width: 100%;
    max-height: 590px;
    overflow-y: auto;
    border: 1px solid #fff;
}
table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    border: 2px solid #fff;
    text-align: center;
    padding: 8px;
    color: black;
    background-color: white;
    height: auto;
}
th {
    text-align: center;
    background-color: #74a1ff;
    color: white;
}
.entrada {
    color: white;
    background-color: green;
    font-weight: bold;
}
.salida {
    color: white;
    background-color: darkred;
    font-weight: bold;
}
.sesionClose{
    width: 150px;
    height: 35px;
    background-color: #333;
    color: white;
}
.error-message {
    display: none; /* Oculto por defecto */
    color: red;
    background-color: #fdd;
    padding: 10px;
    border: 1px solid red;
    margin: 10px 0;
}

.selectOptions{
    width: 300px;
    height: 18px;
    border-radius: 5px;
    margin-bottom: 10px;
}
.selectOptions option {
    color: black;
}

/* Change the color of the selected option when the dropdown is opened */
.selectOptions option:checked {
    background-color: #2b6099;
    color:white
}
/* Estilos para las opciones */
.selectOptions option {
    background-color: #ffffff; /* Color de fondo por defecto */
  }
/* Estilos al pasar el mouse por encima */
.selectOptions option:hover {
    background-color: #74a1ff; /* Color de fondo al pasar el mouse */
    color:white;
  }

  
