/* Base styles for the back button */
.back-button {
    background-color: #007bff;
    color: white;
    width: 50px;
    height: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin: 10px; /* Added margin for spacing */
}

/* Add the arrow */
.back-button::before {
    content: '\2190'; /* Unicode for left arrow */
    font-size: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

/* Hover effect */
.back-button:hover::before {
    transform: translateX(-5px);
}

/* Responsive design: Hide button on mobile */
@media (max-width: 768px) {
    .back-button {
        display: none;
    }
}
