/* Definições de cor */
:root {
    --themeColor: #BF092F6f;
}

#calendar {
    position: fixed;
    top: 100px;
    right: 0;
    bottom: 100px;
    width: 100%;
    margin: 0;
    align-content: center;
    text-align: center;
}

#table {
    width: 100%;
    height: calc(100% - 130px);
}

.today {
    background-color: var(--inputColor);
    color: var(--themeColor);
}

.eventCount::before {
    content: '';
    position: relative;
    display: inline-block;
    top: 0;
    left: -10px;
    height: 10px;
    width: 10px;
    background-color: red;
    border-radius: 50%;
    border: 1px solid white;
}

tr:hover {
    background-color: unset;
}

td:hover {
    background-color: var(--inputColor);
}

@media only screen and (min-width: 768px) {
    /* For desktop: */
    #calendar {
        /*top: 0;*/
        bottom: 0;
        width: calc(100% - 400px);
    }
    .hide #calendar {
        width: calc(100% - 80px);
    }
}