@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

#calendar {
    /* max-width: 350px; */
    margin: 0 auto;
    border-collapse: collapse;
    display: grid;
    grid-template-columns: repeat(7, 1fr); /* 7 jours par semaine */
}

#calendar-header {
    grid-column: span 7;
    text-align: center;
    padding: 30px;
    background: linear-gradient(90deg, rgba(238,250,101,1) 0%, rgba(90,221,113,1) 65%, rgba(41,255,0,1) 100%); 
}

#calendar-header span {
    text-transform: uppercase;
    font-weight: 500;
    color: #001B35;
}

#days-of-week, #calendar-body {
    display: contents;
}

#days-of-week div {
    background: #DDAE54;
    color: #001B35;
}

#calendar-body div {
    cursor: pointer;
    height: 70px;
}

#calendar-body div:hover {
    background: #001B35;
    color: #DDAE54;
}

#days-of-week div, #calendar-body div.day {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #DDD;
    padding: 10px;
    min-height: 50px;
}

.today {
    background-color: blue;
    color: white;
}

.day span.select-dry {
    color: green;
    font-weight: bold;
    font-size: 2rem;
    margin-left: 5px;
}

.selected {
    background: #CCC;
}

#compteur {
    text-align: center;
    font-size: 1.2rem;
}

#compteur :nth-child(1) {
    margin: 15px 0;
}

@media screen and (max-width: 500px) {
    #calendar-body .day {
        font-size: 12px;
    }
    #calendar-body .day span {
        font-size: 0.9rem;
    }
}