/* Estilos exclusivos para el widget de eventos */
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: transparent; /* Fondo transparente para integrarse mejor */
}

#widget-container {
    /* No necesita estilos, es solo un contenedor */
}

.widget-event-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    margin-bottom: 15px; /* Espacio entre tarjetas */
    cursor: default; /* El widget no es clickeable */

    /* ESTILO DEL BOTÓN "Dale Play" */
    background-color: #FFFFFF;
    border: 2px solid #1A202C; /* Borde oscuro, casi negro */
    border-radius: 0px;
    box-shadow: 4px 4px 0px #1A202C; /* La sombra sólida clave */
}

/* No necesitamos efectos hover o active para el widget */

.widget-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #F94790;
    color: #fff;
    border-radius: 5px;
    width: 55px;
    height: 55px;
    flex-shrink: 0;
    text-align: center;
}

.widget-date .month {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    color: fff;
}

.widget-date .day {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.widget-content h3 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 700;
    color: #1A202C;
}

.widget-content p {
    margin: 0;
    font-size: 13px;
    color: #4A5568;
}

/* Estilo para el mensaje de "Cargando..." o "No hay eventos" */
.widget-message {
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 14px;
}