* {
    box-sizing: border-box;
}

.site-container {
    max-height: 100vh;
    height: 100vh;
}

.site__nav {
    border-right: 1px solid var(--bs-gray-300);
}

.page__content {
    min-height: 100vh;
    overflow-y: scroll;
    width: 100%;
}

.page__header {
    height: 57px;
    position: sticky;
    top: 0;
    z-index: 1020;
    border-bottom: 1px solid var(--bs-gray-300);
}

.main__content {
    min-height: calc(100% - 56px);
}

.article__error {
    max-width: 425px;
    padding: 1.25rem;
    margin-bottom: 3rem;
}

.error-code {
    font-size: 3rem;
    margin: 0;
    font-family: monospace;
    font-style: italic;
}

/* TICKET PAGE STYLES */
.main__ticket-page {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
}

.grid__two-col {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: 1fr 1fr;
}


.grid--span-2 {
    grid-column: span 2;
}

.table_wrapper--small {
    max-height: 350px;
    overflow-y: scroll;
}

@media screen and (max-width: 1000px) {
    .main__ticket-page {
        grid-template-columns: 1fr;
    }

    .grid--span-2 {
        grid-column: span 1;
    }
}

@media screen and (max-width: 500px) {
    .grid__two-col {
        grid-template-columns: 1fr;
    }
}