.fixed-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999999;
}

#main-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background-color: #007BFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#main-button img {
    width: 30px;
    height: 30px;
}

.popup {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    flex-direction: column;
    align-items: center;
}

.popup-button {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    border-radius: 50%;
    background-color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.popup-button img {
    width: 25px;
    height: 25px;
}

.popup-button:hover {
    transform: scale(1.1);
}