﻿#wcSupportBtn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #5aa7d8;
    color: #fff;
    padding: 10px 14px;
    border-radius: 40px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    z-index: 99999;
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

    #wcSupportBtn:hover {
        transform: translateY(-2px);
    }

#wcBotPanel {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: clamp(320px, 90vw, 500px);
    height: clamp(450px, 85vh, 650px);
    background: #072543;
    border-radius: 10px;
    overflow: hidden;
    display: none;
    z-index: 99999;
    box-shadow: 0 10px 26px rgba(0,0,0,.45);
}

#wcBotTop {
    height: 40px;
    background: #0b2f5a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    font-weight: bold;
}

#wcBotClose {
    color: white;
    text-decoration: none;
    cursor: pointer;
    font-size: 18px;
}

#wcBotFrame {
    width: 100%;
    height: calc(100% - 40px);
    border: 0;
    background: white;
}

@media print {

    #wcSupportBtn,
    #wcBotPanel {
        display: none !important;
    }
}