/* Plugin de Chat - Estilos Simples */
#wc-chat-container .chat-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    z-index: 9999;
}

#wc-chat-container .chat-header {
    background: #007bff;
    color: white;
    padding: 15px;
    border-radius: 10px 10px 0 0;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#wc-chat-container .chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

#wc-chat-container .chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f9f9f9;
}

#wc-chat-container .message {
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    max-width: 80%;
    word-wrap: break-word;
}

#wc-chat-container .message.user {
    background: #007bff;
    color: white;
    margin-left: auto;
    text-align: right;
}

#wc-chat-container .message.bot {
    background: white;
    border: 1px solid #ddd;
}

#wc-chat-container .chat-input-container {
    padding: 15px;
    border-top: 1px solid #ddd;
    display: flex;
    gap: 10px;
}

#wc-chat-container .chat-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
}

#wc-chat-container .chat-send {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

#wc-chat-container .chat-send:hover {
    background: #0056b3;
}

#wc-chat-container .chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #007bff;
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 9998;
}

#wc-chat-container .chat-button:hover {
    background: #0056b3;
}

#wc-chat-container .hidden {
    display: none !important;
}

#wc-chat-container .data-form {
    background: white;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 10px 0;
}

#wc-chat-container .data-form input {
    width: 100%;
    padding: 8px;
    margin: 5px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

#wc-chat-container .data-form button {
    background: #28a745;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

#wc-chat-container .data-form button:hover {
    background: #218838;
}
