/* Calendar Styles */
#msep-calendar {
    margin: 20px 0;
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.msep-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #0073aa;
}

.msep-calendar-nav {
    display: flex;
    gap: 10px;
}

.msep-calendar-nav button {
    padding: 8px 16px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.msep-calendar-nav button:hover {
    background: #005a87;
}

.msep-calendar-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.msep-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #ddd;
    border: 1px solid #ddd;
}

.msep-calendar-day-header {
    background: #0073aa;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

.msep-calendar-day {
    background: #fff;
    min-height: 100px;
    padding: 8px;
    position: relative;
}

.msep-calendar-day.other-month {
    background: #f5f5f5;
    color: #999;
}

.msep-calendar-day.today {
    background: #fff5e6;
}

.msep-calendar-day-number {
    font-weight: bold;
    margin-bottom: 5px;
}

.msep-calendar-event {
    background: #0073aa;
    color: #fff;
    padding: 4px 6px;
    margin: 2px 0;
    border-radius: 3px;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background 0.3s ease;
}

.msep-calendar-event:hover {
    background: #005a87;
}

.msep-calendar-event-time {
    font-size: 10px;
    opacity: 0.9;
}

/* Responsive Calendar */
@media (max-width: 768px) {
    .msep-calendar-day {
        min-height: 80px;
        padding: 4px;
    }

    .msep-calendar-event {
        font-size: 10px;
        padding: 2px 4px;
    }

    .msep-calendar-title {
        font-size: 18px;
    }
}

