#acfscw-wrapper.acfscw-calendar {
    display: inline-block;
    width: 100%;
    background-color: #f6f6f6;
}

#acfscw-wrapper .acfscw-month {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 0.5em;
    
    text-transform: uppercase;
    align-content: center;
    font-weight: bold;    
}

#acfscw-wrapper .acfscw-month .agenda-text {
    color: #b38001;  
}

#acfscw-wrapper .acfscw-header {
    display: grid;
    grid-template-columns: repeat(7, auto);    
    background: #b38001;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
}

#acfscw-wrapper .acfscw-header div {
    text-align: center;
    line-height: 2.5;
    font-weight: bold;
}

#acfscw-wrapper .acfscw-days {
    display: grid;
    grid-template-columns: repeat(7, auto);
}

#acfscw-wrapper .acfscw-days div {
    width: auto;
    height: auto;
    line-height: 2;
    text-align: center;
    border: 1px solid #E6E6E6;
    position: relative;
}

#acfscw-wrapper .acfscw-days div:not(:empty){
    background-color: white;
}

#acfscw-wrapper .acfscw-days div:hover {
    background-color: #f0f0f0;
}

#acfscw-wrapper .acfscw-days div a {
    display: block;
    font-weight: bold;
    background-color: #fff3cd;
    text-decoration: none !important;
    color: #805b00;    
}

#acfscw-wrapper .acfscw-nav {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

#acfscw-wrapper .acfscw-nav button {
    text-decoration: none;
    border: none;
    color: #b38001;
    background-color: unset;
    padding: 4px 6px;
}

#acfscw-wrapper .acfscw-nav button:hover {
    color: white;
    background-color: #b38001 !important;
}