/* Simple Calendar Styles */
.calendar-wrapper {
    max-width: 350px;
    margin: 0 auto;
}

.calendar-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.calendar-day {
    min-width: 40px;
    min-height: 40px;
    border-radius: 8px;
    border: 1px solid #ddd;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: background-color 0.2s;
    background: white;
}

.calendar-header-day {
    min-width: 40px;
    min-height: 40px;
    font-size: 14px;
    font-weight: bold;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 8px;
}

.other-month .calendar-day {
    color: #ccc;
}

.today {
    background: #007bff;
    color: white;
    border: 2px solid #007bff;
}

.past {
    color: #999;
}

.event-day {
    background: rgba(0, 123, 255, 0.1);
    border-color: #007bff;
}

.calendar-day:hover {
    background: #e9ecef;
}

.selected-day {
    background: #cce7ff;
}

/* Button Styles */
.btn-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    padding: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .calendar-wrapper {
        max-width: 280px;
    }
    .calendar-day {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    .calendar-header-day {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    .btn-circle {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
}