.milbaco-chat-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #007bff; /* albastru mai pronunțat */
    color: #fff;
    padding: 20px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    font-size: 28px;
    box-shadow: 0 0 20px rgba(0,0,0,0.25);
    z-index: 99999;

    animation: milbacoPulse 2s infinite;
}

@keyframes milbacoPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 rgba(0, 123, 255, 0.6); }
    50% { transform: scale(1.1); box-shadow: 0 0 25px rgba(0, 123, 255, 0.8); }
    100% { transform: scale(1); box-shadow: 0 0 0 rgba(0, 123, 255, 0.6); }
}

.milbaco-chat-button::after {
    content: "Chat";
    position: absolute;
    bottom: -22px;
    right: 10px;
    font-size: 14px;
    color: #007bff;
    font-weight: bold;
}

.milbaco-chat-window {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 320px;
    height: 420px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    z-index: 99999;
}

.milbaco-chat-header {
    background: #1e90ff;
    color: #fff;
    padding: 12px;
    border-radius: 10px 10px 0 0;
    font-weight: bold;
    text-align: center;
}

.milbaco-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    font-size: 14px;
}

.milbaco-chat-input-area {
    display: flex;
    border-top: 1px solid #ddd;
}

#milbacoChatInput {
    flex: 1;
    padding: 8px;
    border: none;
}

#milbacoChatSend {
    background: #1e90ff;
    color: white;
    padding: 8px 12px;
    border: none;
    cursor: pointer;
}
