.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.return-link {
    background-color: #28a745;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    display: none;
}

.stats-panel {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.stat-count {
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
}

.stat-title {
    margin: 0 0 5px 0;
}

.approvals-count {
    color: #28a745;
}

.session-filter {
    margin-bottom: 20px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
}

.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.filter-input {
    padding: 5px;
    border-radius: 3px;
    border: 1px solid #ccc;
}

.button-primary {
    padding: 5px 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.button-secondary {
    padding: 5px 10px;
    background-color: #6c757d;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    margin-left: 5px;
}

.button-info {
    padding: 5px 10px;
    background-color: #17a2b8;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.recompute-result {
    margin-bottom: 20px;
    display: none;
}

.recompute-section {
    margin: 20px 0;
}

.recompute-btn {
    padding: 8px 16px;
    background-color: #6c757d;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.recompute-result {
    margin-top: 10px;
    display: none;
}

.recomputed-container {
    margin-top: 20px;
    display: none;
} 