#qt-floating-panel {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.qt-fb-btn {
    display: flex;
    align-items: center;
    background: #6b2639;
    border-radius: 50px;
    padding: 10px 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0.9;
}

.qt-fb-btn:hover {
    transform: scale(1.05);
    opacity: 1;
}

.qt-fb-btn img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.qt-fb-btn span {
    color: #fff;
    font-weight: bold;
}

#qt-fb-toggle {
    width: 50px;
    height: 50px;
    background: #6b2639;
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}