/* Session/Staff Summary Page */

.summary-container {
    margin-bottom: 2rem;
    border: 2px solid #f1f1f1;
    background-color: #fcfcfc;
    padding: .5rem 1rem;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.summary-header {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}

.summary-header h2 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.summary-section-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-section {
    padding: .5rem 1rem;
    border-bottom: 1px solid #e1e1e1;
}

.summary-section:not(.summary-incomplete):last-child {
    border-bottom: none;
}

.summary-section-container .summary-label {
    font-weight: 700;
    margin-bottom: .5rem;
    font-size: 1.35rem;
}

.summary-incomplete {
    border: 2px solid var(--alert);
}

.summary-value p {
    margin-top: 1rem;
}


@media screen and (max-width: 900px) {
    .summary-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .summary-header h2 {
        font-size: 1.75rem;
    }
}