.feedback-table {
    border-collapse: collapse;
    width: 100%;
}

.header-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-right: 1.5em;
}

.header-box .page-header {
    margin: 0;
}

.header-box .session-box {
    margin-left: auto;
}

.overview-layout {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin: 3px;
}

#overview-box {
    flex: 1;
    margin: 0;
}

.session-box {
    width: 280px;
    background-color: var(--dark-blue);
    color: var(--light-text);
    border: 1px solid var(--dark-blue);
    padding: 14px;
}

.session-box h2 {
    margin: 0 0 10px 0;
    color: white;
    font-size: 1.15rem;
}

.session-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.return-link {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 10px;
}

.return-link:hover {
    text-decoration: underline;
}

.session-label {
    font-weight: bold;
}

.session-value {
    text-transform: capitalize;
}

.logout-button {
    display: inline-block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    background-color: white;
    color: var(--dark-blue);
    padding: 8px 12px;
    border: 1px solid white;
    border-radius: 4px;
    font-weight: bold;
}

.logout-button:hover {
    background-color: #eaf2f9;
}

.feedback-table th {
    text-align: left;
    padding: 12px 12px 12px 0px;
}

.feedback-table td {
    padding-right: 8px;
    padding-bottom: 7px;
}

.feedback-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.feedback-table tr:nth-child(odd) {
    background-color: #fff;
}

.vote-field {
    margin-right: 1.5em;
}

@media (max-width: 980px) {
    .header-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-box .session-box {
        width: 100%;
        margin-left: 0;
    }

    .overview-layout {
        flex-direction: column;
    }

    .session-box {
        width: 100%;
    }
}
