#cec-calendar {
    max-width: 1000px;
    margin: auto;
    font-family: Poppins, sans-serif;
}
.cec-calendar-controls {
    text-align: center;
    margin-bottom: 10px;
}
.cec-calendar-controls button {
    padding: 10px 18px;
    margin: 0 5px;
    background: #1c93ca;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 26px;
}
.cec-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}
.cec-day-name {
    font-weight: bold;
    text-align: center;
    background: #eee;
    padding: 12px 0;
    font-size: 16px;
}
.cec-day {
    border: 1px solid #ccc;
    min-height: 120px;
    position: relative;
    padding: 6px;
    background: white;
    transition: background 0.2s;
}
.cec-day:hover {
    background: #f0f8ff;
}
.cec-day.empty {
    background: #f9f9f9;
    border: none;
}
.cec-date-num {
    font-weight: bold;
    font-size: 16px;
}
.cec-event-title {
    background-color: #0073aa;
    color: white;
    padding: 4px 6px;
    margin-top: 6px;
    border-radius: 3px;
    font-size: 14px;
    cursor: pointer;
}
#cec-popup {
    background: rgba(6, 179, 209, 0.95);
    color: rgb(0, 0, 0);
    padding: 12px;
    border-radius: 6px;
    position: absolute;
    display: none;
    z-index: 9999;
    font-size: 14px;
    max-width: 300px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}