html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    background: #e8edf3;
    color: #18212f;
}

a, .btn-link {
    color: #0071c1;

    background: #2b6ecb;
}

.tab-link-title {
    font-size: 1rem;
    font-weight: 700;
}

.tab-link-subtitle {
    font-size: 0.88rem;
    color: #667892;
}

.tab-link.active .tab-link-subtitle,
.tab-link:hover .tab-link-subtitle {
    color: #44566d;
}

article.content {
    max-width: 80rem;
    margin: 0 auto 2rem;
    padding: 2rem;
    border: none;
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
}

article.content h1,
article.content h3 {
    color: #102033;
}

.content-header {
    margin-bottom: 1rem;
}

.content-header h1 {
    margin: 0;
    font-size: 1.8rem;
}

article.content > :first-child {
    margin-top: 0;
}

.overview-intro {
    margin-bottom: 1.5rem;
    color: #56667d;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.overview-panel {
    padding: 1.25rem;
    border: 1px solid #d8e0ea;
    border-radius: 1rem;
    background: #fbfcfe;
}

.stat-panel {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #6a7b90;
}

.stat-value {
    font-size: 1.8rem;
    line-height: 1.1;
    color: #122033;
}

.stat-note {
    color: #5d6d83;
}

.midi-image-wrap {
    margin-top: 1rem;
    border: 1px solid #d8e0ea;
    border-radius: 1rem;
    padding: 0.75rem;
    background: #f7fbff;
}

.midi-image {
    display: block;
    width: 100%;
    max-width: 56rem;
    height: auto;
    border-radius: 0.75rem;
}

.school-panel,
.school-content-panel {
    grid-area: panel;
}

.school-content-panel {
    grid-area: content;
}

.schoolsearch-layout {
    display: grid;
    grid-template-columns: minmax(18rem, 1.2fr) minmax(20rem, 1fr);
    column-gap: 1.25rem;
    row-gap: 0.55rem;
    min-height: calc(100vh - 17rem);
    grid-template-areas:
        "header header"
        "panel content";
}

.schoolsearch-header {
    grid-area: header;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0;
}

.schoolsearch-title {
    margin: 0;
    font-size: 2rem;
}

.schoolsearch-print-button-area {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    align-items: center;
}

.schoolsearch-print-btn {
    font-size: 0.8rem;
    padding: 0.25rem 0.6rem;
    white-space: nowrap;
}

.provider-timeout-report {
    margin-bottom: 1rem;
    padding: 1rem 1.1rem;
    border: 1px solid #d8e0ea;
    border-radius: 14px;
    background: #f5f8fd;
}

.provider-timeout-report-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.provider-timeout-report-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #243852;
}

.provider-timeout-report-empty {
    font-size: 0.85rem;
    color: #56667d;
}

.provider-timeout-report-table {
    width: 100%;
    font-size: 0.85rem;
    border-collapse: collapse;
}

.provider-timeout-report-table th,
.provider-timeout-report-table td {
    padding: 0.3rem 0.6rem;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
}

.provider-timeout-report-table th {
    background: #e6eef9;
    font-weight: 700;
    color: #12263a;
}

.provider-timeout-report-table td {
    background: #f8fbff;
    color: #1f2d3d;
}

.provider-timeout-count-col {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.school-panel,
.open-positions-panel,
.school-content-panel {
    border: 1px solid #d8e0ea;
    border-radius: 1rem;
    background: #fbfcfe;
    padding: 1rem;
    min-width: 0;
}

.open-positions-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #243852;
    margin-bottom: 0.6rem;
}

.open-positions-status {
    font-size: 0.85rem;
    color: #56667d;
}

.open-positions-table {
    font-size: 0.8rem;
    width: 100%;
}

.open-positions-table th {
    color: #243852;
    font-weight: 700;
    white-space: nowrap;
}

.open-positions-table td {
    word-break: break-word;
}

.school-list-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #243852;
}

.school-filters-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(7rem, 1fr)) auto minmax(11rem, 1.7fr);
    gap: 0.75rem;
    align-items: stretch;
    margin-bottom: 0.75rem;
}

.school-loading-banner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 1rem;
    padding: 0.9rem 1.1rem;
    border: 1px solid #f3c98b;
    border-radius: 14px;
    background: #fff3d6;
    color: #8a4b08;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    box-shadow: 0 10px 24px rgba(158, 104, 19, 0.12);
}

.school-loading-progress-row {
    display: block;
    width: 100%;
    margin-top: 0.2rem;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 800;
}

.school-loading-subtext {
    display: block;
    margin-top: 0.25rem;
    text-align: center;
}

.school-loading-actions {
    display: flex;
    justify-content: center;
    margin-top: 0.55rem;
}

.school-loading-skip-btn {
    min-width: 5.2rem;
    font-weight: 700;
}

.school-loading-dots {
    display: inline-flex;
    margin-left: 0.15rem;
    min-width: 2.1ch;
}

.school-loading-dots > span {
    font-size: 1.25rem;
    line-height: 1;
    opacity: 0.2;
    animation: school-loading-dot-fade 1.2s infinite;
}

.school-loading-dots > span:nth-child(2) {
    animation-delay: 0.2s;
}

.school-loading-dots > span:nth-child(3) {
    animation-delay: 0.4s;
}

.school-loading-fulton-wait {
    color: #a33a2a;
}

@keyframes school-loading-dot-fade {
    0%,
    20% {
        opacity: 0.2;
    }

    40% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}

.school-filter-inline-group {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    min-width: 0;
    width: 100%;
}

.school-filter-inline-label {
    margin-bottom: 0;
    white-space: nowrap;
    font-size: 0.68rem;
    color: #27415e;
}

.school-filter-check-group {
    width: auto;
    justify-content: center;
    padding: 0 0.25rem;
}

.school-filter-check {
    margin-top: 0;
    width: 0.95rem;
    height: 0.95rem;
    border-color: #55708c;
    box-shadow: none;
    accent-color: #365f87;
}

.school-filter-check:focus {
    border-color: #27415e;
    box-shadow: 0 0 0 0.12rem rgba(54, 95, 135, 0.18);
}

.school-filters-row .school-filter-select {
    width: 100%;
    min-width: 0;
    min-height: 1.5rem;
    height: 1.5rem;
    padding-top: 0.05rem;
    padding-bottom: 0.05rem;
    padding-left: 0.45rem;
    padding-right: 1.55rem;
    font-size: 0.68rem;
    line-height: 1.05;
}

.school-filter-text-group {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
}

.school-filters-row .school-filter-text {
    min-width: 0;
    width: 100%;
    min-height: 1.5rem;
    height: 1.5rem;
    padding-top: 0.05rem;
    padding-bottom: 0.05rem;
    padding-left: 0.45rem;
    padding-right: 0.45rem;
    font-size: 0.68rem;
    line-height: 1.05;
}


.school-listbox {
    width: 100%;
    height: calc(100vh - 23rem);
    min-height: 18rem;
    border: 1px solid #b8c7da;
    font-size: 0.84rem;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    border-radius: 0.55rem;
    background: #ffffff;
    color: #172a42;
    padding: 0.2rem 0.5rem;
    font-size: 0.78rem;
    padding: 0.4rem;
    overflow-y: auto;
}

.school-listbox option.school-list-open {
    background: #fff4ce;
    color: #5f3b00;
    font-weight: 700;
}

.school-listbox option.school-list-open:checked {
    background: #f7d676;
    color: #3a2400;
}

.school-list-count {
    margin-top: 0.4rem;
    font-size: 0.72rem;
    color: #425d7a;
    text-align: left;
}

.school-checkbox-list {
    padding: 0.2rem 0;
}

.school-checkbox-header {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.1rem 0.5rem 0.2rem;
    font-size: 0.68rem;
    font-weight: 700;
    color: #3f5673;
    border-bottom: 1px solid #d7e2ef;
    margin-bottom: 0.1rem;
}

.school-checkbox-header-applied {
    flex: 0 0 3.2rem;
}

.school-checkbox-header-school {
    flex: 1 1 auto;
}

.school-checkbox-header-distance {
    flex: 0 0 5.5rem;
    text-align: right;
}

.school-checkbox-row {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.2rem 0.5rem;
    font-size: 0.78rem;
    line-height: 1.2;
    cursor: pointer;
}

.school-checkbox-row:hover {
    background: #eef3fa;
}

.school-checkbox-row-selected {
    outline: 1px solid #9cb5d8;
    outline-offset: -1px;
}

.school-checkbox-row.school-list-open {
    background: #fff4ce;
    color: #5f3b00;
    font-weight: 700;
}

.school-checkbox-row.school-list-open.school-checkbox-row-selected {
    background: #f7d676;
    color: #3a2400;
}

.school-checkbox-row-disabled {
    cursor: default;
    color: #51657f;
}

.school-checkbox-input.form-check-input {
    margin: 0;
    flex: 0 0 0.95rem;
    width: 0.95rem;
    height: 0.95rem;
    border: 1.5px solid #2d4868;
    background-color: #f8fbff;
    box-shadow: none;
}

.school-checkbox-input.form-check-input:checked {
    background-color: #1f3f63;
    border-color: #1f3f63;
}

.school-checkbox-input.form-check-input:focus {
    border-color: #17344f;
    box-shadow: 0 0 0 0.12rem rgba(31, 63, 99, 0.2);
}

.school-checkbox-name {
    flex: 1 1 auto;
    min-width: 0;
}

.school-checkbox-distance {
    flex: 0 0 5.5rem;
    text-align: right;
    color: #37526f;
    font-size: 0.72rem;
    white-space: nowrap;
}

.school-change-stats {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.35rem;
    margin-left: auto;
    justify-content: flex-end;
}

.school-change-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.school-change-headline {
    min-width: 0;
}

.school-change-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.12rem 0.42rem;
    border-radius: 999px;
    border: 1px solid #ccaa65;
    background: #fff4d9;
    color: #6f4700;
    font-size: 0.72rem;
    font-weight: 700;
}

@media (max-width: 860px) {
    .school-change-stats {
        flex-wrap: wrap;
        margin-left: 0;
    }
}

.school-actions {
    margin-top: 0.75rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.school-tab-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1rem;
}

.school-tab-button {
    padding: 0.35rem 0.7rem;
    font-size: 0.88rem;
    line-height: 1.2;
}

.lyrics-page {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background-image: url('/images/paper.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #b99f73;
    border-radius: 1rem;
    padding: 1rem;
}

.lyrics-title {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0;
}

.lyrics-title-wrap {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
}

.lyrics-menu-trigger {
    border: 1px solid #b79b6f;
    border-radius: 0.55rem;
    background: #fff8e9;
    padding: 0.2rem;
    line-height: 0;
    cursor: pointer;
    transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.lyrics-menu-trigger:hover,
.lyrics-menu-trigger:focus-visible {
    border-color: #8a6a3c;
    box-shadow: 0 0 0 0.2rem rgba(138, 106, 60, 0.2);
    outline: none;
}

.lyrics-title-logo {
    width: 2.2rem;
    height: 2.2rem;
    object-fit: contain;
}

.lyrics-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 0;
    z-index: 20;
    min-width: 10rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    border: 1px solid #b79b6f;
    border-radius: 0.65rem;
    background: #fff9ec;
    padding: 0.3rem;
    box-shadow: 0 10px 22px rgba(66, 49, 27, 0.2);
}

.lyrics-dropdown-item {
    text-align: left;
    border: 0;
    border-radius: 0.45rem;
    background: transparent;
    color: #3d2d16;
    padding: 0.4rem 0.55rem;
    font-weight: 600;
    cursor: pointer;
}

.lyrics-dropdown-item:hover,
.lyrics-dropdown-item:focus-visible {
    background: #f2dfba;
    outline: none;
}

.lyrics-layout {
    display: grid;
    grid-template-columns: minmax(15rem, 0.7fr) minmax(0, 1.85fr);
    gap: 1rem;
    min-height: calc(100vh - 18rem);
}

.lyrics-list-panel,
.lyrics-content-panel {
    border: 1px solid #b79b6f;
    border-radius: 1rem;
    background-image: linear-gradient(rgba(255, 252, 240, 0.92), rgba(252, 244, 226, 0.92));
    padding: 0.9rem;
    box-shadow: 0 8px 20px rgba(66, 49, 27, 0.12);
}

.lyrics-list-panel {
    background-image: linear-gradient(rgba(255, 250, 236, 0.94), rgba(247, 233, 198, 0.94));
}

.lyrics-content-panel {
    background-image: linear-gradient(rgba(255, 252, 242, 0.94), rgba(243, 226, 188, 0.92));
}

/* .lyrics-list-header moved to CRUD section below */

.lyrics-filter-input {
    border-color: #b79f76;
    background-color: #fff9ea;
    color: #3c2d15;
}

.lyrics-filter-input:focus {
    border-color: #8a6a3c;
    box-shadow: 0 0 0 0.15rem rgba(138, 106, 60, 0.18);
}

.lyrics-song-listbox {
    width: 100%;
    height: calc(100vh - 23rem);
    min-height: 24rem;
    border: 1px solid #b79b6f;
    border-radius: 0.55rem;
    background: #fff6df;
    color: #3d2d16;
    font-size: 0.92rem;
    line-height: 1.2;
    padding: 0.35rem;
    overflow-y: auto;
}

.lyrics-song-listbox option {
    background: #fff4d6;
    color: #35270f;
}

.lyrics-song-title {
    margin: 0 0 0.6rem;
    color: #5a3f1f;
}

.lyrics-song-title-row {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.lyrics-song-title-row .lyrics-song-title {
    margin: 0;
}

.lyrics-artist-value {
    margin-left: auto;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6d5230;
    white-space: nowrap;
}

.lyrics-chords-toggle {
    margin-bottom: 0;
    color: #4a3518;
    font-weight: 600;
}

.lyrics-controls-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.lyrics-capo-value {
    margin-left: auto;
    color: #5d4321;
    font-weight: 700;
    white-space: nowrap;
}

.lyrics-text-field {
    width: 100%;
    height: calc(100vh - 27rem);
    min-height: 24rem;
    border: 1px solid #b79b6f;
    border-radius: 0.65rem;
    background: #fff7e3;
    color: #3b2b14;
    padding: 0.75rem;
    resize: none;
    line-height: 1.4;
    white-space: pre-wrap;
}

/* ---- Lyrics CRUD ---- */
.lyrics-list-header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

.lyrics-add-btn {
    white-space: nowrap;
    flex-shrink: 0;
}

.lyrics-song-actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-left: auto;
    flex-shrink: 0;
}

.lyrics-delete-confirm {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: #842029;
}

.lyrics-edit-form {
    padding: 0.5rem 0;
    overflow-y: auto;
    max-height: calc(100vh - 14rem);
}

.lyrics-edit-heading {
    margin-bottom: 0.75rem;
    color: #5a3f1f;
}

.lyrics-edit-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #4a3518;
    margin-bottom: 0.2rem;
}

.lyrics-edit-capo {
    max-width: 6rem;
}

.lyrics-edit-textarea {
    height: 14rem;
    resize: vertical;
    font-family: monospace;
    font-size: 0.85rem;
    white-space: pre;
}

.lyrics-edit-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

@media (max-width: 1300px) {
    .schoolsearch-layout {
        grid-template-columns: minmax(16rem, 1.2fr) minmax(18rem, 1fr);
    }

    .schoolsearch-header {
        flex-wrap: wrap;
    }

    .school-filters-row {
        grid-template-columns: repeat(2, minmax(8rem, 1fr));
    }

    .school-filter-text-group {
        grid-column: 1 / -1;
    }

    .lyrics-layout {
        grid-template-columns: minmax(13rem, 0.7fr) minmax(0, 1.5fr);
    }
}

.school-content-panel {
    color: #56667d;
    min-width: 0;
}

.school-content-panel h3 {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.detail-grid {
    display: grid;
    gap: 0.85rem;
}

.detail-row {
    display: grid;
    grid-template-columns: 7rem 1fr;
    gap: 0.8rem;
    padding: 0.7rem 0.8rem;
    border: 1px solid #d8e0ea;
    border-radius: 0.65rem;
    background: #ffffff;
}

.detail-row-highlight {
    border-color: #bfd2ea;
    background: linear-gradient(180deg, #f4f9ff 0%, #eef5ff 100%);
}

.detail-label {
    font-weight: 700;
    color: #23364f;
}

.detail-value {
    color: #1a2b40;
}

.notes-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.35rem;
}

.notes-header h4 {
    margin: 0;
    color: #1a2b40;
}

.notes-school-id {
    font-size: 0.85rem;
    color: #466283;
    background: #eaf2fb;
    border: 1px solid #c7d8ec;
    border-radius: 999px;
    padding: 0.2rem 0.6rem;
}

.notes-summary {
    margin: 0 0 0.8rem;
    color: #3d5673;
    font-weight: 600;
}

.notes-table-wrap {
    border: 1px solid #d8e0ea;
    border-radius: 0.65rem;
    overflow: hidden;
    background: #ffffff;
}

.notes-table {
    margin-top: 0;
    width: 100%;
}

.notes-table thead {
    background: #27496d;
}

.notes-table th,
.notes-table td {
    border-color: #dbe4ef;
    vertical-align: top;
    overflow-wrap: anywhere;
}

.notes-col-when {
    width: 8.5rem;
    white-space: nowrap;
}

.notes-col-text {
    width: auto;
}

.notes-col-actions {
    width: 2.2rem;
    text-align: center;
    white-space: nowrap;
}

.notes-delete-btn {
    min-width: 1.75rem;
    padding: 0.1rem 0.35rem;
    line-height: 1;
}

.notes-add-row {
    margin-top: 0.9rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.55rem;
}

.notes-status {
    margin-top: 0.7rem;
    margin-bottom: 0;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHZpZXdCb3g9IjAgMCA1NiA0OSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEzLjA5MzggMTMuMDkzOEg0Mi45MDYyVjM1LjkwNjJIMTMuMDkzOFYxMy4wOTM4WiIgZmlsbD0iI0Y1RjVGNSIvPgo8cGF0aCBkPSJNMTguODQzOCAyMC4xNTYzTDIwLjE1NjMgMTguODQzOEwyOC4yMTg4IDI2LjkwNjNMMzYuMjgxMyAxOC44NDM4TDM3LjU5MzggMjAuMTU2M0wyOS41MzEzIDI4LjIxODhMMzcuNTkzOCAzNi4yODEzTDM2LjI4MTMgMzcuNTkzOEwyOC4yMTg4IDI5LjUzMTNMMjAuMTU2MyAzNy41OTM4TDE4Ljg0MzggMzYuMjgxM0wyNi45MDYzIDI4LjIxODhMMTguODQzOCAyMC4xNTYzWiIgZmlsbD0iI0Q5MTExMSIvPgo8cGF0aCBkPSJNMTguODQzOCAyMC4xNTYzTDIwLjE1NjMgMTguODQzOEwyOC4yMTg4IDI2LjkwNjNMMzYuMjgxMyAxOC44NDM4TDM3LjU5MzggMjAuMTU2M0wyOS41MzEzIDI4LjIxODhMMzcuNTkzOCAzNi4yODEzTDM2LjI4MTMgMzcuNTkzOEwyOC4yMTg4IDI5LjUzMTNMMjAuMTU2MyAzNy41OTM4TDE4Ljg0MzggMzYuMjgxM0wyNi45MDYzIDI4LjIxODhMMTguODQzOCAyMC4xNTYzWiIgZmlsbD0iI0Q5MTExMSIvPgo8L3N2Zz4K) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

.blazor-error-boundary::after {
    content: "An error has occurred."
}

table {
    width: 100%;
    margin-top: 1rem;
}

table thead {
    background-color: #212529;
    color: white;
}

table th,
table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #dee2e6;
}

table tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

@media (max-width: 900px) {
    .page {
        flex-direction: column;
    }

    .sidebar {
        width: auto;
        padding: 1.25rem;
        border-right: none;
        border-bottom: 1px solid #bcc8d8;
    }

    .top-row {
        padding: 1.5rem 1.25rem 0.75rem;
    }

    article.content {
        margin: 0 1.25rem 1.5rem;
        padding: 1.5rem;
    }

    .tab-link {
        margin-right: 0;
        border-right: 1px solid transparent;
        border-radius: 0.9rem;
    }

    .tab-link.active {
        border-color: #bcc8d8;
    }

    .schoolsearch-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .school-tab-button {
        width: 100%;
    }

    .school-listbox {
        height: 20rem;
    }

    .lyrics-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .lyrics-song-listbox,
    .lyrics-text-field {
        height: 20rem;
        min-height: 20rem;
    }

    .school-filters-row {
        grid-template-columns: 1fr;
        align-items: center;
    }

    .school-filter-inline-group,
    .school-filter-text-group {
        grid-column: 1;
    }

    .school-filter-select,
    .school-filter-text {
        width: 100%;
        min-width: 0;
    }

    .school-filter-inline-label {
        margin-bottom: 0;
    }

    .notes-add-row {
        grid-template-columns: 1fr;
    }
}

/* Hide left navigation sidebar and force main content full-width */
.sidebar {
    display: none !important;
}

main.main-full {
    flex: 1 1 auto;
    width: 100%;
    padding: 2rem;
}

article.content {
    margin: 0 auto;
}


