#cyberbot-widget-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: Arial, sans-serif;
}
#cyberbot-launcher {
    background: #004a99;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
#cyberbot-chat-window {
    width: 300px;
    height: 400px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    overflow: hidden;
}
#cyberbot-header {
    background: #004a99;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#cyberbot-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    font-size: 14px;
    background: #f9f9f9;
}
#cyberbot-input-area {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ddd;
}
#cyberbot-input {
    flex: 1;
    border: 1px solid #ddd;
    padding: 5px;
    border-radius: 5px;
}
#cyberbot-send {
    background: #004a99;
    color: white;
    border: none;
    padding: 5px 10px;
    margin-left: 5px;
    border-radius: 5px;
    cursor: pointer;
}
.bot-msg { background: #e1f5fe; padding: 8px; border-radius: 10px; margin-bottom: 10px; }
.user-msg { background: #eee; padding: 8px; border-radius: 10px; margin-bottom: 10px; text-align: right; }
.bot-msg br {
    display: block;
    margin: 2px 0;
}

