/**
 * Nach-oben-Pfeil Styling für EinfachSchnellKochen.de
 */


/* Scroll to Top Button Basis-Stil */

#scrollToTopBtn {
    position: fixed !important;
    bottom: 1.5rem !important;
    right: 1.5rem !important;
    background-color: #f97316 !important;
    color: white !important;
    border-radius: 9999px !important;
    width: 3rem !important;
    height: 3rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease !important;
    opacity: 0 !important;
    z-index: 999 !important;
    cursor: pointer !important;
}

#scrollToTopBtn:hover {
    background-color: #ea580c !important;
    transform: translateY(-2px) !important;
}

#scrollToTopBtn.visible {
    opacity: 1 !important;
    visibility: visible !important;
}


/* Pfeil-Stil */

.arrow-up {
    display: inline-block !important;
    width: 0.75rem !important;
    height: 0.75rem !important;
    border-style: solid !important;
    border-width: 0.175rem 0 0 0.175rem !important;
    border-color: white !important;
    transform: rotate(45deg) !important;
    margin-top: 0.25rem !important;
}


/* Responsive Anpassungen */

@media screen and (max-width: 767px) {
    #scrollToTopBtn {
        width: 2.5rem !important;
        height: 2.5rem !important;
        bottom: 1rem !important;
        right: 1rem !important;
        visibility: visible !important;
        display: flex !important;
        opacity: 0 !important;
    }
    #scrollToTopBtn.visible {
        opacity: 1 !important;
    }
    .arrow-up {
        width: 0.625rem !important;
        height: 0.625rem !important;
        border-width: 0.15rem 0 0 0.15rem !important;
    }
}