#bso-calendar-container {
    max-width: 800px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

#bso-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    background: #f4f4f4;
    padding: 15px;
    border-radius: 8px;
}

.bso-day-header {
    text-align: center;
    padding: 10px 0;
    color: #333;
}

.bso-day {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.2s;
}

.bso-day.available { background: #000; color: #fff; cursor: pointer; }
.bso-day.available:hover { transform: scale(1.1); background: #333; }
.bso-day.pending { background: #FFD700; color: #000; cursor: not-allowed; }
.bso-day.booked { background: #FF0000; color: #fff; cursor: not-allowed; }

/* Modal Tengah */
#bso-modal {
    display: none;
    align-items: center;
    justify-content: center;
}