/* CSS for the Back Button */
.back-button {
    position: fixed;
    bottom: 18px;
    right: 12px;
    z-index: 999; /* Ensures the button is above other content */
    
}

.back-button button {
    background-color: rgb(255 255 255 / 25%);
    color: #fff; /* Button text color */
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

/* Hover effect (optional) */
.back-button button:hover {
    background-color: #000;
}

.back-to-top {
    right:90px !important;
}