/* Lebegő gomb */
#ai-chat-widget {
    position: flex !important;
    bottom: 14px !important;
    right: auto !important;
    left: 200px !important;
    top: auto !important;
    
    width: 160px;
    max-width: calc(100vw - 32px);
    height: 160px;
    
    background: #fff;

    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    z-index: 99999 !important;
}



/* Fejléc */
.chat-header {
    background: #0d6efd;
    color: #fff;
    padding: 10px 14px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header button {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

/* Üzenetek */
#chat-messages {
    padding: 12px;
    flex: 1;
    overflow-y: auto;
    background: #f8f9fa;
    font-size: 14px;
}

.bot-msg {
    background: #e9ecef;
    padding: 8px 10px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.user-msg {
    background: #0d6efd;
    color: #fff;
    padding: 8px 10px;
    border-radius: 8px;
    margin-bottom: 8px;
    text-align: right;
}

/* Input */
.chat-input {
    border-top: 1px solid #ddd;
    padding: 8px;
}

.chat-input input {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 8px;
}

/* Chat ablak */
#ai-chat-toggle {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 120px;
    height: 120px;
    max-height: 220px;
    background: #fff;
    background-color: #4f46e5;
    color: #fff;
    border-radius: 50% !important;
    padding: 0 !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 26px;
    line-height: 1;
    overflow: hidden;
    z-index: 99999;
}
