/* Styling Khusus Kalender */
.calendar-container {
    background-color: #fff;
    min-height: 400px;
}

.calendar-weekdays div {
    width: 14.28%; /* 100% bagi 7 hari */
    text-align: center;
}

.calendar-days {
    display: flex;
    flex-wrap: wrap;
}

.calendar-days div {
    width: 14.28%;
    height: 80px; /* Tinggi kotak tanggal */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 10px;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.2s;
    position: relative;
    font-weight: 500;
    color: #444;
}

.calendar-days div:hover:not(.empty) {
    background-color: #f1f3f5;
}

.calendar-days div.empty {
    cursor: default;
}

.calendar-days div.today {
    background-color: #e3f2fd;
    color: #0d6efd;
    font-weight: bold;
    border: 1px solid #0d6efd;
}

.calendar-days div.selected {
    background-color: #333 !important;
    color: #fff !important;
}

/* Sidebar Menu */
.offcanvas {
    max-width: 300px;
}

.menu-item {
    transition: all 0.3s ease;
    opacity: 0.8;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
}

.menu-item:hover {
    opacity: 1;
    background-color: #f8f9fa;
    transform: translateX(5px);
}

.menu-item.active {
    opacity: 1;
    background-color: #e9ecef;
    border-left: 4px solid #333;
    color: #000 !important;
}

/* Indikator Event (Titik Biru) */
.event-dot {
    width: 6px;
    height: 6px;
    background-color: #0d6efd; /* Warna biru bootstrap */
    border-radius: 50%;
    margin-top: 5px;
}

.has-event {
    font-weight: bold;
}

/* Styling List Event di Bawah */
.event-item {
    background-color: #f8f9fa;
    border-left: 4px solid #0d6efd;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
}

.event-time {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 600;
}

.event-title {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 2px;
}

.event-desc {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0;
}