.calendar-container {
    font-family: Arial, sans-serif;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.date-controls {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.month-nav {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
}

.month-nav:hover {
    background-color: #f0f0f0;
}

.month-title {
    font-size: 18px;
    font-weight: bold;
}


.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    margin-top: 50%;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.close:hover {
    color: #000;
}

.month-title {
    text-align: center;
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.calendar {
    border-collapse: collapse;
    width: 100%;
}

.calendar th {
    background-color: #f0f0f0;
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
    font-weight: bold;
}

.calendar td {
    border: 1px solid #ddd;
    padding: 0;
    height: 70px;
    width: 14.28%;
    vertical-align: top;
}

.calendar-day {
    cursor: pointer;
    height: 100%;
    padding: 5px;
    transition: background-color 0.2s;
}

.calendar-day:hover {
    background-color: #f0f0f0;
}

.day-number {
    font-size: 16px;
    margin-bottom: 5px;
}

.today {
    background-color: #e8f5e9;
}

.selected {
    background-color: #b3e5fc !important;
}

.empty-day {
    background-color: #f9f9f9;
}

@media (min-width: 1200px) {
    .modal-content {
        margin-top: 10%;
    }

}