/* Header Avatar */
.chat-header-avatar {
    width: 36px; height: 36px; border-radius: 50%; overflow: hidden;
    background: rgba(255,255,255,0.1); display: flex; align-items: center;
    justify-content: center; font-weight: 700; color: white;
}
.chat-scroll-area {
    padding: 16px; padding-bottom: 90px;
    display: flex; flex-direction: column; gap: 8px;
}
.chat-loading { text-align: center; color: rgba(255,255,255,0.4); margin-top: 20px; }

/* Sprechblasen */
.chat-bubble {
    max-width: 80%; padding: 10px 14px; border-radius: 16px;
    position: relative; font-size: 0.95rem; line-height: 1.4; word-wrap: break-word;
}
/* MEINE (Rechts, Orange) */
.chat-bubble--me {
    align-self: flex-end; background: var(--cheese-main, #F5A623);
    color: #000; font-weight: 500; border-bottom-right-radius: 4px;
}
/* ANDERE (Links, Grau) */
.chat-bubble--them {
    align-self: flex-start; background: rgba(255, 255, 255, 0.1);
    color: white; border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom-left-radius: 4px; backdrop-filter: blur(5px);
}
.chat-bubble__time {
    display: block; font-size: 0.65rem; margin-top: 4px; text-align: right; opacity: 0.7;
}

/* Input Bar unten */
.chat-input-bar {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: rgba(20, 20, 20, 0.95); backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.1); padding: 12px 16px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    display: flex; gap: 10px; align-items: center; z-index: 20;
}
#chat-input-field {
    flex: 1; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px; padding: 10px 16px; color: white; font-size: 1rem; outline: none;
}
.chat-send-btn {
    width: 44px; height: 44px; border-radius: 50%; background: var(--cheese-main, #F5A623);
    border: none; color: white; display: flex; align-items: center; justify-content: center;
}