/* ===================================================
   FOOTER UPCOMING COURSES WIDGET (ASTRA FOOTER)
   =================================================== */

/* Base Widget Styling */
.widget_my_calendar_upcoming_widget {
    border: 2px solid #8F94A4;
    border-radius: 6px;
    background: #fff0d9;
    padding: 10px;
    margin-bottom: 15px;
    box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.1);
}

/* Event List Items inside the Footer Widget */
.widget_my_calendar_upcoming_widget li {
    list-style: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 8px 10px;
    margin-bottom: 8px;
    background: #ffffff;
    transition: all 0.2s ease-in-out;
}

/* Hover Effect for Events */
.widget_my_calendar_upcoming_widget li:hover {
    transform: scale(1.02);
    box-shadow: 0px 0px 10px rgba(143, 148, 164, 0.3);
    cursor: pointer;
}

/* Links inside the Widget */
.widget_my_calendar_upcoming_widget li a {
    color: #2c3e50;
    font-weight: bold;
    text-decoration: none;
}

.widget_my_calendar_upcoming_widget li a:hover {
    color: #d35400;
}