#tinycrm-chat-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    z-index: 999999;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: height 0.3s ease;
    font-family: sans-serif;
}
.tinycrm-chat-minimized {
    height: 50px;
}
.tinycrm-chat-expanded {
    height: 450px;
}
#tinycrm-chat-header {
    background: #2271b1; /* Color azul WordPress, puedes cambiarlo */
    color: #ffffff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}
#tinycrm-chat-toggle {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}
#tinycrm-chat-body {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f8f9fa;
}
#tinycrm-chat-messages {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.tinycrm-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
}
.ai-msg {
    background: #e9ecef;
    color: #333;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}
.user-msg {
    background: #2271b1;
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}
#tinycrm-chat-footer {
    display: flex;
    padding: 12px;
    border-top: 1px solid #eeeeee;
    background: #fff;
}
#tinycrm-chat-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 20px;
    outline: none;
}
#tinycrm-chat-send {
    background: #2271b1;
    color: #fff;
    border: none;
    padding: 10px 18px;
    margin-left: 8px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
}