* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

body {
    background-color: black;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-image: 
        /*radial-gradient(circle, rgba(0, 0, 0, .5), rgba(0, 0, 0, 1)),*/
        radial-gradient(circle, rgba(0, 0, 0, .1), rgba(0, 0, 0, 1)),
        url("/assets/images/background.jpg");
    background-size: cover;
    background-position: center;
}

h1 {
    color: white;
}

#titleDiv {
    width: 100%;
}

#calendarText {
    font-size: 70px;
    padding: 10px 0 10px 40px;
}

#prevBtn img, #nextBtn img {
    width: 50%;
}

.calendarContainer {
    display: flex;
    height: 100dvh;
    width: 100%;
    padding-top: 20px;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.calendar {
    width: 90%;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.monthYear {
    text-align: center;
    font-weight: 600;
    width: auto;
    font-size: 40px;
}

.header button {
    display:flex;
    align-items: center;
    justify-content:center;
    border: none;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    width: 40px;
    height: 40px;
    box-shadow: 0 0 4px rgba(0,0,0,0.2);
}

.days {
    display: grid;
    grid-template-columns: repeat(7,1fr);
}

.day {
    text-align: center;
    padding: 5px;
    color: #999FA6;
    font-size: 30px;
    font-size: clamp(0rem, 5vw, 2rem);
    font-weight: 500;
}

.dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    height: 100%;
}

.date {
    display: flex;
    margin: auto;
    cursor: pointer;
    font-weight: 500;
    border-radius: 50%;
    aspect-ratio: 1;
    width: 100%;
    transition: 0.2s;
    font-size: 20px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.date:hover, .date.active {
    /*background: #ff5869;
    color: #fff;*/
}

.date.inactive {
    color: #d2d2d2;
}

.date.booked {
    background: #d2d2d2;
    color: #fff;
}

.date.inactive:hover {
    /*color: #fff;*/
}

@media screen and (min-width: 601px) {
    .calendarContainer {
        position: relative;
        top: 100px;
        height: calc(100% - 100px);
    }

    .calendar {
        height: calc(90%);
        width: fit-content
    }
}