/* Additional header and back button styles */
.header-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.header-row h1 {
    margin: 0 0 0 15px;
}

.back-btn {
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
    display: flex;
    align-items: center;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.back-btn::before {
    content: "←";
    margin-right: 8px;
    font-size: 18px;
    font-weight: 700;
}

.back-btn:hover {
    background-color: rgba(255, 255, 255, 0.5);
    transform: translateX(-3px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}
