.calendar-container {
    max-width: 80%;
    margin: auto;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 20px 12px 0px 12px;
    box-shadow: 0 0 10px rgba(155, 122, 122, 0.918);
}

.esquina-superior-izquierda,
.esquina-superior-derecha {
    position: absolute;
    width: 100px;
    height: 90px;
}

.esquina-superior-izquierda {
    width: 10%;
    height: auto;
    top: -5%;
    left: 7%;
}

.esquina-superior-derecha {
    width: 10%;
    height: auto;
    top: -5%;
    right: 7%;
}


div.calendario-opaco {
    background-color: rgba(255, 255, 255, 0.75);
}

.month-header {
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.day {
    position: relative;
    text-align: right;
    font-weight: bold;

    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.day-inicio {
    border-left: 0px solid rgba(0, 0, 0, 0.2) !important;
}

.day-final {
    border-left: 1px solid rgba(0, 0, 0, 0.2) !important;
}

a.day {
    text-decoration: none !important;
    color: black;
}

.day-numero {
    font-size: 1.2rem;
    float: right;
}

.cumplementado-img-pc {
    width: 70%;
    float: left;
}

.calendario-etiquetas {
    margin: 10px 0px 0px 0px;
    position: relative;

}

.text-cumple-flecha {
    color: #9C9C9C;
}

.contenedor-principal {
    width: 100%;
    overflow-x: auto;
    /* Esto permitirá el desplazamiento horizontal */
    white-space: nowrap;
    /* Evita que los elementos se envuelvan */
    padding: 0px;
}

.contenedor-productos {
    width: 150px;
    margin: 8px 5px;
    display: inline-block;
    white-space: nowrap;
    background-color: rgb(255, 255, 255, 0.5);
    box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 7px;
}

.contenedor-productos-imagen {
    margin: 8px 0px;
    display: inline-block;
    white-space: nowrap;
    padding: 0px;
}

.calendario-movil {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.producto-detalle-informacion {
    border: none; /* Elimina el borde */
    border-radius: 30px; /* Agrega borde redondeado */
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3); /* Agrega sombra */
    padding: 15px;
}