/* Return button styles */
.return-button-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 6rem;
}

.return-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: #3c6c2a;
    color: white;
    border: none;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.return-button:hover {
    background-color: #4d8836;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px -1px rgba(0, 0, 0, 0.1), 0 3px 6px -1px rgba(0, 0, 0, 0.06);
}

.return-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Responsive styles for return button */
@media (max-width: 768px) {
    .return-button {
        width: 100%;
        max-width: 300px;
    }
}

/* #backToTop {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #3c6c2a;
    color: rgb(255, 0, 0);
    border: none;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: background-color 0.3s ease;
}

#backToTop:hover {
    background-color: #4d8836;
}

#backToTop i {
    width: 1.5rem;
    height: 1.5rem;
} */