#sbc-chat-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999999;
}

.sbc-chat-button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg,#ff7a18,#ff3d00);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0,0,0,.25);
    transition: all .3s ease;
}

.sbc-chat-button:hover {
    transform: scale(1.08);
}

#sbc-chat-popup {
    position: fixed;
    bottom: 110px;
    right: 25px;
    width: 360px;
    height: 520px;
    background: rgba(255,255,255,.12);
    filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,.2);
    z-index: 999999;
}

.sbc-header {
    height: 80px;
    background: linear-gradient(135deg,#ff7a18,#ff3d00);
}