:root {
    --accent: #ea1212 !important;
    --primary-font: Open Sans, sans-serif;
    --secondary-font: Open Sans, sans-serif;
}

cs-site_branding img { max-height: 70px; }

/* Styling the back to top button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #FF4500; /* Dark Orange (OrangeRed) */
    color: white; /* Text and arrow color */
    text-align: center;
    padding: 10px;
    border-radius: 50%; /* Rounded shape */
    font-size: 18px; /* Size of the arrow and text */
    text-decoration: none;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;  /* Small button width */
    height: 60px; /* Small button height */
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

/* Button hover effect */
.back-to-top:hover {
    background-color: #E03E00; /* Darker orange on hover */
    color: #fff;
}

/* Hide the button by default */
.back-to-top.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Show the button when scrolled down */
.back-to-top.visible {
    opacity: 1;
}

/* Responsive styles for mobile */
@media screen and (max-width: 600px) {
    .back-to-top {
        width: 50px;  /* Smaller button width for mobile */
        height: 50px; /* Smaller button height for mobile */
        font-size: 14px; /* Smaller text size for mobile */
        padding: 8px; /* Adjust padding for mobile */
    }
}
