.navigation-links {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.back-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
}

.back-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
}