@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
#hexabot-chatbot-container, 
#hexabot-chatbot-container * {
    font-family: 'Poppins', sans-serif !important;
}

#hexabot-chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    height: 500px;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 9999;
}

#hexabot-chat-header {
    background: #007BFF;
    color: #ffffff;
    padding: 10px;
    cursor: pointer;
    text-align: center;
    user-select: none;
    font-size: 20px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hexabot-chat-body {
    display: flex;
    flex-direction: column;
    height: calc(100% - 50px);
    overflow: hidden;
}

#hexabot-messages {
    flex-grow: 1;
    padding: 10px;
    overflow-y: auto;
    background: #f7f7f7;
}

#hexabot-input {
    padding: 10px;
    border: none;
    border-top: 1px solid #ddd;
    font-size: 14px;
    outline: none;
}

.user-message, .bot-message {
    margin: 8px 0;
    padding: 8px;
    border-radius: 8px;
    max-width: 85%;
}

.user-message {
    background-color: #007bff;
    color: #ffffff;
    align-self: flex-end;
    text-align: right;
}

.bot-message {
    background-color: #e9ecef;
    color: #333;
    align-self: flex-start;
    text-align: left;
}

.minimized {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
}

.minimized #hexabot-chat-body {
    display: none !important;
}
