.hidden {
    display: none !important;
}

.divider {
    height: 60%;
    width: 2px;
    background: var(--content-section-bg);
    border-radius: 1px;
}

.horizontalDivider {
    height: 2px;
    width: 60%;
    background: var(--content-section-bg);
    border-radius: 1px;
}

.row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.column {

}

.dropDown {
    transition-duration: 1s;
    width: 100%;
    text-align: left;
    padding: 20px;
    font-size: 2em;
    background: var(--content-section-bg);
    border: var(--nrc-red);
    border-style: solid;
    border-width: 2px;
    color: var(--text-color-title);
}

.dropDown:hover,
.dropHover {
    transition-duration: 1s;
    border-width: 0px;
    background: var(--text-color-title);
    color: var(--content-section-bg);
    padding-left: 20%;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    max-width: 50%;
    background-color: var(--content-section-bg);
    padding: 20px;
    border-radius: 8px;
    position: relative;
    color: var(--text-color-title);
}

.modal-content .row .column {
    width: 50%;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.calendar {
    width: 100%;
    height: 80vh;
}

@media (max-width: 1000px) {
    .modal-content {
        max-width: 90%;
    }

    .modal-content .row {
        flex-direction: column;
    }

    .modal-content .row .column {
        width: 100%;
    }

    .contentBox .row {
        flex-direction: column;
    }

    .calendar {
        width: 100%;
        height: 40vh;
    }

}