/**
 * Стили для кнопки "Наверх"
 */

#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ff0000;
    color: white;
    border: none;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000;
    display: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.1s ease;
}

#scrollToTopBtn:hover {
    background-color: #cc0000;
}

#scrollToTopBtn:active {
    transform: scale(0.95);
}

/* Стили только для мобильных устройств */
@media (max-width: 768px) {
    #scrollToTopBtn {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Скрываем на десктопе если нужно */
@media (min-width: 1024px) {
    #scrollToTopBtn {
        display: none !important;
    }
}