::-webkit-scrollbar{
    display: none;
}
body{
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    background-color: #f0f0f0;
}
#calendar{
    width: 100vw;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#calendar header{
    background: #0a74da;
    color: white;
    padding: 10px;
    height: calc(15vh - 20px);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.month, .buttons{
    width: 50%;
    text-align: center;
}
#calendar header button{
    height: 55px;
    width: 135px;
    background-color: #07b9ff;
    font-weight: bold;
    color: white;
    border: 1px solid black;
    text-shadow: 0 0 3px black;
    border-radius: 10px;
    cursor: pointer;
    margin-inline: 1%;
    transition: background-color 500ms, width 1s, height 1s;
}
#calendar header button:hover{
    background-color: green;
}
#calendar header span h6{
    margin: 0;
    text-align: center;
    font-weight: bold;
}
#calendar table{
    width: 100%;
    height: 85vh;
    border-collapse: collapse;
}
#calendar th, #calendar td{
    width: 14.28%;
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
}
#calendar .today{
    background-color: green;
    color: white;
}
#calendar .inactive{
    color: #ccc;
}
.modal{
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    justify-content: center;
    align-items: center;
}
.modal-content{
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}
#noteText{
    width: 50%;
}
.close{
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
@media (max-width: 592px){
    #calendar header button{
        height: 35px;
        width: 105px;
        margin: 5px;
    }
}