



#evtcal{
    font-size: 0.8rem;
    padding: 0px;
    border: 2px solid var(--main-color);
    border-collapse: collapse;
    a {
        font-size: 1rem;
        text-decoration: underline;
        text-shadow: none;
        font-family:  var(--main-font);
        &:hover, &:focus, &:active {color: var(--accent-color);}
    }
    td {
        padding: 0px;
    }


}


:root {
    --cell-height: 30px;
    --cell-width: 40px;


}
#header{
 background-color: var(--main-color);
 text-align: center;
 vertical-align: center;
 width: 100%;
 margin: 5px;
 
 width: var(--cell-width);
 height: var(--cell-height);
 font-size: 1rem;
 
}

#arrows {
    
    text-align: center;
    font-weight: bold;
    width: var(--cell-width);
    height: var(--cell-height);
    a {
        text-decoration: none;
        font-size: 1rem;
        font-family: var(--section-font);
        &:hover {
            font-size: 1rem;
           font-family: var(--section-font); 
        }
    }
}

#week_day_header{
 background-color: var(--main-color);
 text-align: center;
 vertical-align: center;
 width: var(--cell-width);
padding: 5px;
}

#day_cell {
 text-align: center;
 background-color: var(--main-color);
 width: var(--cell-width);
 height: var(--cell-height);
 
 &:hover, &:focus {
    color: var(--main-color);
    background-color: var(--text-color);
    background-image: var(--button-img);
    background-size: 75px;
    background-position-x: left 5px;
    background-position-y: bottom -5px;
    background-repeat: no-repeat;
}
}

#today_cell {
 text-align: center;
 background-color: var(--text-color);
 background-image: var(--button-img);
 background-size: 75px;
 background-position-x: left 5px;
 background-position-y: bottom -5px;
 background-repeat: no-repeat;
 width: var(--cell-width);
 height: var(--cell-height);
a {
        color: var(--main-color);
    }

}

#event_day_cell {
 text-align: center;
 background-color: var(--main-color);
 width: var(--cell-width);
 height: var(--cell-height);
&:hover, &:focus {
    color: var(--main-color);
    background-color: var(--text-color);
    background-image: var(--button-img);
    background-size: 75px;
    background-position-x: left 5px;
    background-position-y: bottom -5px;
    background-repeat: no-repeat;
    text-shadow: 3px 3px 0px green;
    }
    
  
}

.event_display_area {
    box-sizing: border-box;
    border: var(--text-color) solid 1px;
    width: 100%;
    text-align: center;
    margin: auto;
    /padding: 10px;
    resize: none;
    background-color: var(--main-color);
    color: var(--text-color);
    font-family: 'Times New Roman', serif;
}

#entire_calendar {
    color: var(--text-color);
    border-color: var(--text-color);
    border-style: solid;
    border-collapse: collapse; 
    width: 100%;
}
