/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background-color: #DB3328;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover{
    background-color: #DB3328;
    outline: 2px solid #DB3328;
    outline-offset: 2px;
}

.scroll-to-top:focus {
    background-color: #DB3328;
    outline: 2px solid #DB3328;
    outline-offset: 2px;
}

.scroll-to-top svg {
    fill: currentColor;
}

/* Mobile adjustments for scroll button */
@media screen and (max-width: 768px) {
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }

    .scroll-to-top svg {
        height: 18px;
        width: 18px;
    }
}
