* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { width: 100%; height: 100%; overflow: hidden; position: fixed; background: #000; font-family: sans-serif; }

#chatBox {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../icon/background.jpg');
    background-size: cover; background-position: center;
    overflow-y: auto; display: flex; flex-direction: column; padding: 15px;
}

/* BLUR HALAMAN LOGIN */
#loginOverlay {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.msg-row { display: flex; width: 100%; margin-bottom: 12px; align-items: flex-end; }
.me { justify-content: flex-end; }
.them { justify-content: flex-start; }

.msg-content { display: flex; flex-direction: column; max-width: 75%; }
.me .msg-content { align-items: flex-end; }
.them .msg-content { align-items: flex-start; margin-left: 8px; }

.chat-avatar {
    width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
    border: 2px solid white; box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* KOTAK CHAT PAS TEKS - FIX UTAMA */
.bubble {
    display: flex;
    flex-direction: column;
    width: fit-content !important; /* Ngepres teks */
    min-width: 45px;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.4;
    word-break: break-word;
    position: relative;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transition: transform 0.2s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.bubble-me { background: #2563eb; color: white; border-radius: 16px 16px 4px 16px; align-self: flex-end; }
.bubble-them { background: white; color: #1e293b; border-radius: 16px 16px 16px 4px; align-self: flex-start; }

.reply-in {
    font-size: 11px; background: rgba(0,0,0,0.08);
    padding: 6px 10px; border-radius: 8px;
    border-left: 3px solid #2563eb; margin-bottom: 4px;
    display: block; width: 100%; /* Agar full di dalam bubble yang sudah ciut */
}
.me .reply-in { border-left-color: #fff; background: rgba(255,255,255,0.15); }

.msg-name { font-size: 9px; font-weight: 800; color: rgba(255,255,255,0.8); margin-bottom: 2px; text-transform: uppercase; }
.msg-time { font-size: 7px; color: rgba(255,255,255,0.5); margin-top: 2px; }

#chatBox::-webkit-scrollbar { width: 0; }
