@import url('https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

.title{
    text-align: center;
    font-size:45px;
    padding: 12px;
}

.bigdate{
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-size: 22px;
}

.mmyyyy{
    display: flex;
    flex-direction: row;
    width: 154px;
    justify-content: center;
}

.changemonth{
    color:black;
    cursor: pointer;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.changemonth:hover{
    color:grey;
}

.calendarparent{
    overflow: scroll;
    margin-inline: 15px;
}

.calendarmain{
    margin: 15px;
    margin-inline: auto;
    width: 950px;
    display:grid;
    grid-template-columns: repeat(7,minmax(0, 1fr));
    border: 1px solid black;
    gap: 1px;
    background-color: black;
    border-radius: 10px;
}

.dotw{
    text-align: center;
    background-color: white;
    padding-block: 4px;
}

.cd{
    text-align: center;
    background-color: white;
    height: 100px;
    color: black;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cd .eventparent{
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    align-items: center;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.cd .eventparent::-webkit-scrollbar{
    display: none;
}

.cd .eventparent .event{
    width:90%;
    background-color:cornflowerblue;
    color:white;
    border-radius: 6px;
    margin-block:2px;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 24px;
}