@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
body {

    text-align: center;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;

}
 
.calendar {
    border: 1px solid lightblue;
    width: 600px;
    border-radius: 10px;
    padding: 20px;
}
.calendar-button{
    border-radius: 50%;
    padding: 10px;
    box-shadow:2px 2px;
    cursor: pointer; 
}
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calendar-header div {
    font-size: 30px;

}


.days{
    display: flex; 
    justify-content: left;
    background-color: aliceblue;
    margin-top: 20px;
    align-items: center;
    
}
.days div{
     width: 80px; 
     height: 80px;
     display: flex;
     align-items: center;
     justify-content: center;
}
#dates{
    display: flex; 
    flex-wrap: wrap;
    justify-content: left;
    align-items: center;

}
.date-item{
   
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.active-date{
    color:blueviolet;
    border: 1px solid grey;
    border-radius: 50%;
    box-shadow: 1px 1px gray;  
    background-color: blanchedalmond;
}
.inactive-date{
    color:gray;
}