    #cal {
    width: 100%;
    display: flex;
    margin-top: 50px;
    justify-content: center;
     background-color: #555;
    }
    
    button {
    width: 75px;
    cursor: pointer;
    border: none;
    outline: none;
    padding: 5px;
    border-radius: 5px;
    color: white;
    }

    #header {
    padding: 10px;
    color: #d36c6c;
    font-size: 26px;
    font-family: sans-serif;
    display: flex;
    justify-content: space-between;
    
    }
    #monthDisplay{
    color: #000000;
    }
    #header button {
    background-color:#10016f;
    }
    #container {
    width: 840px;
    }
    #weekdays {
    width: 100%;
    display: flex;
    justify-content: space-between;
    color: #ffffff;
    background-color: #d98e05;

    }
    #weekdays div {
    width: 110px;
    padding: 10px;
    }
    #calendar {
    width: 100%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    /*background-color: #222227;*/
    }
    .day {
    width: 110px;
    padding: 10px;
    height: 110px;
    cursor: pointer;
    box-sizing: border-box;
    background-color: white;
    margin: 5px;
    box-shadow: 1px 1px 3px #CBD4C2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    }
    .day:hover {
    background-color: #10016f;
    color: #ffffff;
    }

    .day + #currentDay {
    background-color: #10016f;
    color: #ffffff;
    }

    .event {
    font-size: 12px;
    padding: 3px;
    background-color: #10016f;
    color: white;
    border-radius: 5px;
    max-height: 55px;
    overflow: hidden;
    }
    .padding {
    cursor: default !important;
    background-color: #FFFCFF !important;
    box-shadow: none !important;
    }
 
