#fw-chat-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #ffd600;
    color: #111;
    padding: 12px 18px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px 0 0 6px;
    z-index: 9999;
}

#fw-chat-tab.notify::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background: red;
    border-radius: 50%;
    margin-left: 6px;
    vertical-align: middle;
}

#fw-chat-box {
    position: fixed;
    right: -340px;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    background: #fff;
    border: 2px solid #ffd600;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    z-index: 9999;
    transition: right 0.3s ease;
}

#fw-chat-box.active { right: 20px; }

#fw-chat-admin-list {
    background: #f7f7f7;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #ddd;
}

#fw-chat-admin-list div {
    cursor: pointer;
    padding: 4px 0;
}

#fw-chat-messages {
    height: 220px;
    overflow-y: auto;
    padding: 10px;
    font-size: 14px;
}

#fw-chat-input {
    padding: 10px;
    border: none;
    border-top: 1px solid #ddd;
    resize: none;
}

#fw-chat-actions {
    display: flex;
}

#fw-chat-send,
#fw-chat-end {
    flex: 1;
    border: none;
    padding: 10px;
    font-weight: bold;
    cursor: pointer;
}

#fw-chat-send { background: #ffd600; }
#fw-chat-end { background: #eee; }
