@charset "utf-8";
/* CSS Document */

.calendar-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 5px;
}

.calendar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
/*    width: 150px; /* Ajusta el ancho del calendario según sea necesario */
    background-color: white; /* Añadido para visibilidad */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra para un efecto de elevación */
}

.day-of-week {
    font-size: 1.5em;
    font-weight: bold;
    color: black;
    background-color: red;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin: 0;
}

.day-of-week-036669 {
    font-size: 1.5em;
    font-weight: bold;
    color: white;
    background-color: #036669;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin: 0;
}

.day-of-week-CLINICAS {
    font-size: 1.5em;
    font-weight: bold;
    color: white;
    background-color: #036669;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin: 0;
}

.day-of-week-009381 {
    font-size: 1.5em;
    font-weight: bold;
    color: white;
    background-color: #009381;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin: 0;
}

.day-of-week-GREY {
    font-size: 1.5em;
    font-weight: bold;
    color: #AAA8A8;
    background-color: #6F6E6E;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin: 0;
}

.day-of-week-RED {
    font-size: 1.5em;
    font-weight: bold;
    color: yellow;
    background-color: RED;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin: 0;
}

.day-of-week-BLUE {
    font-size: 1.5em;
    font-weight: bold;
    color: white;
    background-color: #003366;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin: 0;
}
.day-of-week-FGSL {
    font-size: 1.5em;
    font-weight: bold;
    color: white;
    background-color: #3E4095;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin: 0;
}


.date-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    width: 100%;
    padding: 20px 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.day-number {
    font-size: 4em;
    margin: 0;
    color: black;
    font-weight:bolder;
}

.month-name {
    font-size: 1.5em;
    margin: 0;
    color: black;
}    

