/* Contenitore principale (posizionato in basso a destra) */
.safiria-chat-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Finestra della chat */
.safiria-chat-window {
    width: 350px;
    height: 500px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

/* Header */
.safiria-chat-header {
    background-color: #0f172a; /* Colore dark/tecnico */
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

/* Area dei messaggi */
.safiria-chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background-color: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-wrapper {
    display: flex;
    width: 100%;
}

.chat-wrapper.user {
    justify-content: flex-end;
}

.chat-wrapper.safiria {
    justify-content: flex-start;
}

/* Bolle di testo */
.chat-bubble {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 15px;
    font-size: 14px;
    line-height: 1.4;
}

.chat-bubble.user {
    background-color: #2563eb; /* Blu utente */
    color: white;
    border-bottom-right-radius: 2px;
}

.chat-bubble.safiria {
    background-color: #e2e8f0; /* Grigio Safiria */
    color: #1e293b;
    border-bottom-left-radius: 2px;
}

/* Area Input */
.safiria-chat-input-area {
    display: flex;
    padding: 15px;
    border-top: 1px solid #e2e8f0;
    background: white;
}

.safiria-chat-input-area input {
    flex: 1;
    padding: 10px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    outline: none;
}

.safiria-chat-input-area input:focus {
    border-color: #2563eb;
}

.send-btn {
    background-color: #2563eb;
    color: white;
    border: none;
    padding: 0 15px;
    margin-left: 10px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

/* Pulsante Fluttuante */
.safiria-fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0f172a;
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.safiria-fab:hover {
    transform: scale(1.05);
}