/* Footer Custom Styles */
.bg_footer_color {
    background-color: #0057b8;
    color: #ffffff;
}

.content-bottom {
    width: 100%;
}

.separator {
    height: 1px;
    width: 100%;
}

.separator-horizontal {
    display: block;
}

.margin-y-xs {
    margin-top: 0.1px;
    margin-bottom: 0.1px;
}

.background-neutral-4 {
    background-color: #e0e0e0;
}

.text-neutral-0 {
    color: #ffffff;
}

/* Footer links */
.bg_footer_color a {
    color: #ffffff;
    text-decoration: none;
}

.bg_footer_color a:hover {
    text-decoration: underline;
}

/* Copyright section */
.bg_footer_color span {
    color: #ffffff;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

    .scroll-to-top.scroll-to-top-is-visible {
        opacity: 1;
        background: transparent;
    }

.scroll-to-top-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #0057b8;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: background-color 0.3s ease;
}

.scroll-to-top-button:hover {
    background-color: #004494;
}

.scroll-to-top-button:focus {
    outline: none;
}