/* Back button styling */
.back-button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    text-decoration: none;
    color: #12B885;
    margin-bottom: 16px;
    transition: color 0.3s;
    animation: fadeInUp 0.5s forwards;
}

.back-button:hover {
    color: #0E9B72;
}

.back-button img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    transition: transform 0.3s;
}

.back-button:hover img {
    transform: translateX(-5px);
}

/* Remove blue highlight on focus for all elements */
:focus {
    outline: none;
}

/* Remove the tap highlight color specifically on touch */
a, button, img, input, select, textarea {
    -webkit-tap-highlight-color: transparent;
    -ms-touch-action: manipulation;  /* This disables touch highlighting in IE/Edge */
    touch-action: manipulation; /* This prevents the touch highlight in modern browsers */
}

