/* Chat Widget Styling Features */
#pixel-chat-container {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 350px;
    background-color: #1a1a1a;
    border: 1px solid #00d2ff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    z-index: 9999;
    font-family: Arial, sans-serif;
}

.chat-hidden {
    display: none !important;
}

#pixel-chat-header {
    background-color: #00d2ff;
    color: #fff;
    padding: 15px;
    border-top-left-radius: 9px;
    border-top-right-radius: 9px;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
}

#pixel-chat-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

#pixel-chat-body {
    height: 300px;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-msg {
    max-width: 80%;
    padding: 10px;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    word-wrap: break-word;
}

.bot-msg {
    background-color: #333;
    align-self: flex-start;
}

.user-msg {
    background-color: #00d2ff;
    align-self: flex-end;
}

#pixel-chat-input-area {
    display: flex;
    padding: 10px;
    border-top: 1px solid #333;
}

#pixel-chat-input {
    flex: 1;
    padding: 10px;
    background-color: #333;
    border: 1px solid #444;
    color: #fff;
    border-radius: 5px;
    outline: none;
}

#pixel-chat-send {
    background-color: #00d2ff;
    color: #fff;
    border: none;
    padding: 10px 15px;
    margin-left: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

#pixel-chat-toggle-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #00d2ff;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.chat-login-btn {
    display: inline-block;
    background: #00d2ff;
    color: #fff;
    padding: 8px 12px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 5px;
    margin-right: 5px;
    font-size: 13px;
    font-weight: bold;
}