#events-calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    max-width: 400px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}
.calendar-cell {
    border: 1px solid #ddd;
    padding: 5px;
    text-align: center;
    position: relative;
    cursor: pointer;
    min-height: 50px;
    background: #fff;
    transition: background-color 0.2s ease;
}
.calendar-cell:hover {
    background-color: #f5f5f5;
}
.event-badge {
    background: #ff5722;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 3px;
    right: 3px;
}
#calendar-controls {
    text-align: center;
    margin-bottom: 10px;
}
#calendar-controls button {
    padding: 5px 10px;
    background: #eee;
    border: 1px solid #ccc;
    cursor: pointer;
}
#calendar-controls button:hover {
    background: #ddd;
}
#calendar-title {
    font-weight: bold;
    font-size: 16px;
}
