/* =====================================================================
   Volunteer dashboard — at-a-glance home for the volunteer.
   Uses .admin-with-roster (defined in admin_classroom_planning.css) for
   the left-column layout. This file defines the volunteer-specific
   sidebar (.vol-roster-*) and main content (.vol-dash-*).
   ===================================================================== */

.volunteer-dashboard-page {
    padding-top: 28px;
    padding-bottom: 28px;
}

.vol-dash-container {
    max-width: 1380px;
}

/* === Sidebar: schools the volunteer is in ============================= */
.vol-roster {
    position: sticky;
    top: 92px;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(124, 121, 184, 0.12), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(247, 248, 253, 0.97) 100%);
    border: 1px solid rgba(124, 121, 184, 0.16);
    box-shadow: 0 18px 36px rgba(34, 42, 70, 0.08);
    max-height: calc(100vh - 110px);
    overflow: hidden;
}

.vol-roster-header {
    padding: 2px 4px 6px;
}

.vol-roster-kicker {
    display: block;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-dark);
}

.vol-roster-help {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.vol-roster-list {
    list-style: none;
    margin: 0;
    padding: 4px 2px;
    display: grid;
    gap: 6px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
    scrollbar-width: thin;
}

.vol-roster-list::-webkit-scrollbar { width: 6px; }
.vol-roster-list::-webkit-scrollbar-thumb {
    background: rgba(124, 121, 184, 0.30);
    border-radius: 3px;
}

.vol-roster-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid transparent;
    text-decoration: none;
    color: var(--text);
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
    cursor: pointer;
}

.vol-roster-card:hover {
    transform: translateX(2px);
    background: #ffffff;
    border-color: rgba(124, 121, 184, 0.22);
    box-shadow: 0 8px 18px rgba(34, 42, 70, 0.06);
}

.vol-roster-card.is-active {
    background: linear-gradient(135deg, rgba(124, 121, 184, 0.16), rgba(124, 121, 184, 0.06));
    border-color: rgba(124, 121, 184, 0.45);
    box-shadow: 0 10px 22px rgba(34, 42, 70, 0.10);
}

.vol-roster-card-avatar {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(124, 121, 184, 0.85), rgba(124, 121, 184, 0.58));
    color: #ffffff;
    font-weight: 800;
    font-size: 1.05rem;
    border: 2px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 10px rgba(34, 42, 70, 0.10);
}

.vol-roster-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vol-roster-card.is-active .vol-roster-card-avatar {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 121, 184, 0.28), 0 4px 10px rgba(34, 42, 70, 0.10);
}

.vol-roster-card.has-warn .vol-roster-card-avatar {
    border-color: #d04a5a;
    box-shadow: 0 0 0 2px rgba(208, 74, 90, 0.30), 0 4px 10px rgba(208, 74, 90, 0.16);
}

.vol-roster-card-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 0;
}

.vol-roster-card-text strong {
    font-size: 0.94rem;
    font-weight: 800;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    line-height: 1.15;
}

.vol-roster-card-kind {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 2px 8px;
    border-radius: 999px;
    width: fit-content;
    margin-top: 2px;
    border: 1px solid transparent;
}

.vol-roster-card-kind-school {
    color: var(--primary-dark);
    background: rgba(124, 121, 184, 0.10);
    border-color: rgba(124, 121, 184, 0.22);
}

.vol-roster-card-kind-social_center {
    color: #2d6a55;
    background: rgba(95, 168, 147, 0.16);
    border-color: rgba(95, 168, 147, 0.32);
}

.vol-dash-kind-mini {
    font-size: 0.9em;
    margin-left: 4px;
    vertical-align: middle;
}

.vol-roster-card-stats {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.74rem;
    color: var(--muted);
    font-weight: 700;
    line-height: 1;
}

.vol-roster-card-stat {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.vol-roster-card-stat span[aria-hidden] {
    font-size: 0.86rem;
    line-height: 1;
}

.vol-roster-card.is-active .vol-roster-card-stats { color: var(--primary-dark); }

.vol-roster-card-sub {
    font-size: 0.74rem;
    color: var(--muted);
    font-weight: 600;
}

.vol-roster-card-warn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
    padding: 3px 8px;
    border-radius: 999px;
    background: #fdecec;
    border: 1px solid #f4c0c0;
    color: #a52834;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
}

.vol-roster-card-warn span[aria-hidden] { font-size: 0.8rem; }

.vol-roster-card.has-warn {
    background: linear-gradient(135deg, rgba(253, 236, 236, 0.65), rgba(255, 255, 255, 0.95));
    border-color: rgba(208, 74, 90, 0.22);
}

.vol-roster-card.has-warn:hover {
    border-color: rgba(208, 74, 90, 0.42);
    box-shadow: 0 10px 22px rgba(208, 74, 90, 0.12);
}

.vol-roster-card-all {
    border: 1px dashed rgba(124, 121, 184, 0.30);
    background: rgba(255, 255, 255, 0.7);
    margin-bottom: 2px;
}

.vol-roster-card-avatar-all {
    background: linear-gradient(135deg, #f7f8fd, #eef0fb);
    color: var(--primary-dark);
    font-size: 1.3rem;
}

.vol-roster-empty {
    padding: 14px 12px;
    color: var(--muted);
    font-size: 0.86rem;
    text-align: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px dashed rgba(124, 121, 184, 0.24);
}

.vol-roster-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 4px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(124, 121, 184, 0.10);
    border: 1px solid rgba(124, 121, 184, 0.22);
    color: var(--primary-dark);
    font-size: 0.84rem;
    font-weight: 800;
    text-decoration: none;
    transition: background 0.15s ease;
}

.vol-roster-reset:hover { background: rgba(124, 121, 184, 0.18); }

/* === Hero ============================================================ */
.vol-dash-hero {
    margin-bottom: 22px;
    overflow: hidden;
}

.vol-dash-hero-body {
    display: grid;
    gap: 22px;
}

.vol-dash-kicker {
    margin-bottom: 14px;
}

.vol-dash-hero-copy {
    width: 100%;
    min-width: 0;
}

.vol-dash-hero-copy h1 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4.2vw, 3rem);
    line-height: 1.06;
}

.vol-dash-hero-copy p {
    margin: 0 0 16px;
    max-width: 700px;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.65;
}

.vol-dash-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.vol-dash-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.vol-dash-stat {
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(124, 121, 184, 0.14);
    box-shadow: 0 14px 28px rgba(34, 42, 70, 0.07);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vol-dash-stat span {
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.vol-dash-stat strong {
    font-size: 1.55rem;
    line-height: 1.1;
    color: var(--text);
    font-weight: 800;
}

.vol-dash-stat-meta {
    font-size: 0.74rem !important;
    color: var(--muted) !important;
    font-weight: 600 !important;
    margin-top: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vol-dash-stat-warn {
    background: linear-gradient(135deg, rgba(253, 236, 236, 0.85), rgba(255, 255, 255, 0.95));
    border-color: rgba(208, 74, 90, 0.30);
}

.vol-dash-stat-warn strong { color: #a52834; }

.vol-dash-stat-next {
    background: linear-gradient(135deg, rgba(124, 121, 184, 0.12), rgba(255, 255, 255, 0.95));
    border-color: rgba(124, 121, 184, 0.30);
}

.vol-dash-stat-next strong { color: var(--primary-dark); }

/* === Top callout (when there's work to do) =========================== */
.vol-dash-callout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    padding: 14px 18px;
    border-radius: 20px;
    margin-bottom: 22px;
    background: linear-gradient(135deg, #fdecec 0%, #fff5f5 100%);
    border: 1px solid rgba(208, 74, 90, 0.30);
}

.vol-dash-callout-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.vol-dash-callout-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vol-dash-callout-text strong {
    color: #a52834;
    font-weight: 800;
}

.vol-dash-callout-text span {
    color: #6b1d28;
    font-size: 0.9rem;
}

/* === School block ==================================================== */
.vol-dash-school {
    margin-bottom: 22px;
    overflow: hidden;
}

.vol-dash-school-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    padding: 18px 22px;
    background: linear-gradient(180deg, rgba(124, 121, 184, 0.06), transparent);
    border-bottom: 1px dashed rgba(124, 121, 184, 0.24);
}

.vol-dash-school-identity {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.vol-dash-school-avatar {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(124, 121, 184, 0.85), rgba(124, 121, 184, 0.58));
    color: #fff;
    font-size: 1.4rem;
    font-weight: 900;
    border: 2px solid #fff;
    box-shadow: 0 8px 18px rgba(34, 42, 70, 0.08);
    flex-shrink: 0;
}

.vol-dash-school-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vol-dash-school-text {
    min-width: 0;
}

.vol-dash-school-text h2 {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.01em;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.vol-dash-school-kind-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    color: #2d6a55;
    background: rgba(95, 168, 147, 0.16);
    border: 1px solid rgba(95, 168, 147, 0.32);
    letter-spacing: 0.02em;
}

.vol-dash-school-text p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.vol-dash-school-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vol-dash-school-stat {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(124, 121, 184, 0.10);
    border: 1px solid rgba(124, 121, 184, 0.22);
    color: var(--primary-dark);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.2;
}

.vol-dash-school-stat-warn {
    background: #fdecec;
    border-color: rgba(208, 74, 90, 0.35);
    color: #a52834;
}

/* === Class card grid ================================================= */
.vol-dash-class-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 16px;
    padding: 18px 22px 22px;
}

.vol-dash-class {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 18px 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfe 100%);
    border: 1px solid rgba(124, 121, 184, 0.18);
    box-shadow: 0 12px 26px rgba(34, 42, 70, 0.05);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.vol-dash-class:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 32px rgba(34, 42, 70, 0.09);
}

.vol-dash-class.is-warn {
    border-color: rgba(208, 74, 90, 0.40);
    background: linear-gradient(180deg, rgba(253, 236, 236, 0.40) 0%, #ffffff 60%);
}

.vol-dash-class.is-warn::before {
    content: "";
    position: absolute;
    top: 16px;
    bottom: 16px;
    left: 0;
    width: 4px;
    border-radius: 4px;
    background: linear-gradient(180deg, #ee6076, #a52834);
}

.vol-dash-class.is-complete {
    border-color: rgba(43, 177, 117, 0.34);
    background: linear-gradient(180deg, rgba(43, 177, 117, 0.06) 0%, #ffffff 60%);
}

.vol-dash-class-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.vol-dash-class-titles {
    min-width: 0;
}

.vol-dash-class-titles h3 {
    margin: 0;
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--text);
}

.vol-dash-class-sub {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 0.88rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vol-dash-class-flag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.2;
    white-space: nowrap;
}

.vol-dash-class-flag-warn {
    background: #fdecec;
    color: #a52834;
    border: 1px solid rgba(208, 74, 90, 0.42);
}

.vol-dash-class-flag-done {
    background: rgba(43, 177, 117, 0.14);
    color: #1f7a52;
    border: 1px solid rgba(43, 177, 117, 0.40);
}

.vol-dash-class-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.vol-dash-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(124, 121, 184, 0.08);
    border: 1px solid rgba(124, 121, 184, 0.18);
    color: var(--primary-dark);
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.3;
}

.vol-dash-tag-teacher {
    background: rgba(124, 121, 184, 0.14);
    border-color: rgba(124, 121, 184, 0.30);
}

.vol-dash-tag-volunteer {
    background: rgba(95, 168, 147, 0.14);
    border-color: rgba(95, 168, 147, 0.28);
    color: #2d6a55;
}

/* Next/pending-session callout strip — switches to a warn tint when the
   primary_session is a past session waiting on the volunteer's evaluation. */
.vol-dash-next-strip {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(124, 121, 184, 0.08);
    border: 1px dashed rgba(124, 121, 184, 0.32);
}

.vol-dash-next-strip.is-pending {
    background: rgba(255, 184, 96, 0.12);
    border-color: rgba(217, 124, 74, 0.45);
}

.vol-dash-next-strip.is-pending .vol-dash-next-date {
    border-color: rgba(217, 124, 74, 0.55);
}

.vol-dash-next-strip.is-pending .vol-dash-next-day,
.vol-dash-next-strip.is-pending .vol-dash-next-month {
    color: #b34b22;
}

.vol-dash-next-kicker {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 2px;
}

.vol-dash-next-strip.is-pending .vol-dash-next-kicker {
    color: #b34b22;
}

.vol-dash-next-date {
    display: grid;
    justify-items: center;
    align-content: center;
    padding: 6px 10px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid rgba(124, 121, 184, 0.30);
    min-width: 52px;
    text-align: center;
}

.vol-dash-next-day {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--primary-dark);
    line-height: 1;
}

.vol-dash-next-month {
    font-size: 0.66rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.vol-dash-next-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.vol-dash-next-text strong {
    font-size: 0.94rem;
    font-weight: 800;
    color: var(--text);
}

.vol-dash-next-text span {
    color: var(--muted);
    font-size: 0.82rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Progress block */
.vol-dash-progress {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vol-dash-progress-top {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    color: var(--text);
    font-weight: 700;
    font-size: 0.88rem;
}

.vol-dash-progress-warn {
    color: #a52834;
}

.vol-dash-progress-bar {
    height: 8px;
    border-radius: 999px;
    background: rgba(124, 121, 184, 0.14);
    overflow: hidden;
}

.vol-dash-progress-bar-fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #7c79b8, #5b58a1);
    border-radius: 999px;
    transition: width 0.3s ease;
    min-width: 4px;
}

.vol-dash-progress-bar-fill.is-warn {
    background: linear-gradient(90deg, #ee6076, #c43a4d);
}

.vol-dash-progress-bar-fill.is-complete {
    background: linear-gradient(90deg, #2bb175, #1f7a52);
}

.vol-dash-progress-cta {
    margin: 0;
    color: var(--text);
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.4;
}

.vol-dash-progress-cta-warn { color: #a52834; }
.vol-dash-progress-cta-done { color: #1f7a52; }

.vol-dash-empty-note {
    margin: 0;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(150, 150, 165, 0.10);
    border: 1px dashed rgba(124, 121, 184, 0.24);
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.5;
}

.vol-dash-class-actions {
    margin-top: auto;
    display: flex;
}

.vol-dash-cta {
    width: 100%;
    justify-content: center;
}

/* Status badge used when no evaluation can be written right now — a clearly
   non-interactive pill, not a faded button. */
.vol-dash-status {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 14px;
    border: 1px dashed rgba(124, 121, 184, 0.32);
    background: rgba(124, 121, 184, 0.06);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1.2;
    cursor: default;
}

.vol-dash-status > span[aria-hidden] {
    font-size: 1rem;
    line-height: 1;
}

.vol-dash-status-waiting {
    background: rgba(241, 175, 70, 0.10);
    border-color: rgba(226, 162, 58, 0.45);
    color: #8a5a05;
}

.vol-dash-status-done {
    background: rgba(43, 177, 117, 0.10);
    border-color: rgba(43, 177, 117, 0.42);
    color: #1f7a52;
}

/* "Back to profile" — quieter than a primary button, but clearly clickable. */
.vol-dash-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(124, 121, 184, 0.10);
    border: 1px solid rgba(124, 121, 184, 0.24);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.vol-dash-back-link:hover {
    background: rgba(124, 121, 184, 0.18);
    border-color: rgba(124, 121, 184, 0.42);
    transform: translateY(-1px);
}

/* === Empty state ===================================================== */
.vol-dash-empty-card {
    margin-bottom: 22px;
}

.vol-dash-empty-body {
    display: grid;
    place-items: center;
    text-align: center;
    gap: 8px;
    padding: 44px 24px;
}

.vol-dash-empty-emoji {
    font-size: 2.4rem;
}

.vol-dash-empty-body h3 {
    margin: 0;
    font-size: 1.2rem;
}

.vol-dash-empty-body p {
    margin: 0;
    color: var(--muted);
}

/* === Recent evaluations card ========================================= */
.vol-dash-evals-card {
    margin-top: 6px;
    padding: 22px 24px;
}

.vol-dash-evals-header {
    margin-bottom: 18px;
}

.vol-dash-evals-header h2 {
    margin: 0 0 6px;
    font-size: 1.4rem;
    letter-spacing: -0.01em;
}

.vol-dash-evals-header p {
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.vol-dash-evals-list {
    margin-top: 4px;
}

.vol-dash-empty-inner {
    display: grid;
    place-items: center;
    gap: 6px;
    padding: 36px 18px;
    color: var(--muted);
    text-align: center;
}

.vol-dash-empty-inner p { margin: 0; }

/* === Responsive ====================================================== */
@media (max-width: 1080px) {
    .vol-roster {
        position: static;
        max-height: none;
        overflow: visible;
    }
    .vol-roster-list {
        grid-auto-flow: column;
        grid-auto-columns: 220px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 10px;
    }
    .vol-roster-help { display: none; }

    .vol-dash-hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .vol-dash-hero-stats {
        grid-template-columns: 1fr 1fr;
    }
    .vol-dash-class-grid {
        grid-template-columns: 1fr;
        padding: 16px;
    }
    .vol-dash-school-header {
        padding: 16px;
    }
}
