/* 1. Scale all 5 widgets to 80% */
#cal-1, #cal-2, #cal-3, #cal-4, #cal-5 {
    transform: scale(0.8);
    transform-origin: top left;
    width: 125% !important;
    margin-bottom: -10% !important;
}

/* 2. Set the background color for the active class */
/* This will only apply to the IDs the Javascript targets */
.has-event-today {
    background-color: rgba(59, 130, 246, 0.2) !important; /* Soft Blue */
    border: 1px solid rgba(59, 130, 246, 0.5) !important;
    border-radius: 10px; /* Matches widget styling */
}
