@import url('presets.css');

.calendar-container {
    width: 300px;
    margin: 20px auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: Arial, Helvetica, sans-serif;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #f0f0f0;
    border-bottom: 1px solid #ccc;
}

#currentMonthYear {
    font-size: 1.2rem;
    text-align: center;
}

#prevMonth, #nextMonth {
    background-color: var(--preset);
    color: #fff;
}

.calendar-grid {
    width: 100%;
    border-collapse: collapse;
}

.calendar-grid th, .calendar-grid td {
    text-align: center;
    padding: 8px;
    border: 1px solid #eee;
}

.calendar-grid th {
    background-color: var(--preset);
    color: #fff;
}

.calendar-grid td {
    cursor: pointer;
}

.calendar-grid td.today {
    background-color: #888;
    color: #000;
}

.calendar-grid td.selected {
    background-color: var(--preset);
    color: #fff;
}

.calendar-grid td.empty {
    background-color: #f0f0f0;
    cursor: default;
}