#wc-floating-button {
    position: fixed;
    bottom: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}
.wc-button-right { right: 25px; }
.wc-button-left { left: 25px; }

#wc-modal {
    position: fixed;
    bottom: 100px;
    width: 320px;
    max-width: 90%;
    border-radius: 10px;
    z-index: 999;
    box-shadow: 2px 2px 20px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
}
.wc-modal-right { right: 25px; }
.wc-modal-left { left: 25px; }

.wc-modal-header {
    padding: 15px;
    color: white;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#wc-close-modal { cursor: pointer; font-size: 24px; }

.wc-modal-body {
    padding: 15px;
    background: #fff;
}
.wc-modal-body p { margin: 0 0 15px 0; }

.wc-agent-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.wc-agent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: 5px;
    background: #f5f5f5;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background .3s;
}
.wc-agent:hover { background: #e9e9e9; }
.wc-agent-icon i { font-size: 24px; color: #25D366; }
.wc-agent-name { font-weight: bold; }
.wc-agent-title { font-size: 12px; color: #777; }

/* Mobil & Masaüstü Görünürlük */
@media (max-width: 767px) {
    .desktop { display: none !important; }
}
@media (min-width: 768px) {
    .mobile { display: none !important; }
}
