#chatBox {
    display: flex;
    flex-direction: column;
    gap: 14px; /* 👈 creates natural spacing between all messages */
    flex: 1;
    padding: 30px 20%;
    overflow-y: auto;
    background: radial-gradient(circle at top, #111827, #0b0f17);
}