/* components */

.month-changer {
    display: flex;
    gap: var(--spacing);
    align-items: center;
    justify-content: space-around;
}

.month-changer a {
    text-decoration: none;
    line-height: 10px;
}

.month-changer img {
    height: 20px;
    margin-top: auto;
}

.booking-page {
    display: flex;
    gap: var(--spacing);
    /*height: calc(100vh - 50px - 16px);*/
}

.blank-screen-indicator {
    height: 200px;
}


#notification-task-counter {
    border-radius: 999px;
    width: 20px;
    height: 20px;
    position: absolute;
    text-align: center;
    color: white;
    margin-left: 40px;
    margin-top: 10px;
}

.inline-block {
    display: inline-block;
    position: relative;
}

.spread-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing);
}

.button-row {
    display: flex;
    border: 2px solid var(--accent-primary-color);
    border-radius: 999px;
}

.button-row > * {
    background-color: transparent !important;
    color: var(--accent-primary-color) !important;
    border-radius: 0;
}

.button-row > *:not(:last-child) {
    border-right: 2px solid var(--accent-primary-color);
    border-radius: 0;
}

#report-table > div {
    border: 1px solid var(--border-color);
    border-radius: var(--spacing-small);
}

#report-table > div > table {
    border-collapse: collapse;
}

#report-table > div > table > tbody > tr,
#report-table > div > table > thead > tr {
    background-color: transparent;
    border-bottom: 1px solid var(--border-color);
}

#report-table > div > table > tbody > tr:last-child {
    /*background-color: var(--ui);*/
    border-bottom: none;
    /*border-radius: 0 0 var(--spacing-small) var(--spacing-small);*/
    /*border-spacing: 0;*/
}

#report-table > div > table > tbody > tr:last-child > *,
#report-table > div > table > thead > tr > * {
    background-color: var(--ui);
}

#report-table > div > table > thead > tr > th:last-child {
    border-top-right-radius: var(--spacing-small);
}

#report-table > div > table > thead > tr > th:first-child {
    border-top-left-radius: var(--spacing-small);
}

#report-table > div > table > tbody > tr:last-child > th:last-child {
    border-bottom-right-radius: var(--spacing-small);
}

#report-table > div > table > tbody > tr:last-child > th:first-child {
    border-bottom-left-radius: var(--spacing-small);
}


#reports-page form select {
    max-width: 250px;
}


#sign-area {
    display: none;
    gap: var(--spacing-large);
}

#sign-area > * {
    border-top: 1px solid var(--border-color);
    flex-grow: 1;
    padding-top: 1rem;
    margin-top: 3rem;
}

#hidden-title {
    display: none;
}