.d-flex {
    display: flex;
}

.d-none {
    display: none !important;
}

.row {
    display: flex;
    flex-direction: row;
}

.align-items-center {
    align-items: center;
}

.col {
    display: flex;
    flex-direction: column;
}

.cursor-normal {
    cursor: default;
}

.cursor-pointer {
    cursor: pointer;
}



nav > .pagination {
    display: flex;
    list-style: none;
    padding-inline-start: unset;
    justify-content: center;
}

.pagination > .page-item {
    display: block;
    list-style: none;
    padding-right: 8px;
    font-size: 1.5rem;
    color: black;
}

.pagination > .page-item:last-child {
    padding: 0;
}

.pagination > .page-item.disabled {
    color: darkgrey;
}

.pagination > .page-item.active {
    font-weight: bold;
}

.page-item.active > span {
    font-size: 24px;
}

.pagination > .page-item.disabled > .page-link {
    font-size: 24px;
}

nav {
    margin-top: auto;
}

.calendar-table__col.disabled > .calendar-table__item {
    color: darkgrey;
}