.help-button {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
}


.help-btn {
    display: flex;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    background-color: #3498db;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.help-btn:hover {
    background-color: #2980b9;
    /*transform: scale(1.01);*/
}

.help-btn span {
    font-size: 27px;
}

.help-text {
    display: none;
}

.help-btn:hover .help-text {
    display: block;
    position: absolute;
    right: 60px;
    background: #333;
    padding: 5px 10px;
    border-radius: 3px;
    white-space: nowrap;
}

/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
    .help-button {
        right: 5px;
        bottom: 5px;
    }

    .help-btn {
        width: 35px;
        height: 35px;
    }
}



