/* Chat modo oscuro */
body {
    background: #121212;
    color: #e0e0e0;
}

#chatBox {
    flex-grow: 1;
    padding: 10px;
    overflow-y: auto;
    background: #1e1e1e;
    display: flex;
    flex-direction: column;
}

.message {
    max-width: 70%;
    padding: 8px 12px;
    margin: 4px 0;
    border-radius: 15px;
    word-wrap: break-word;
    position: relative;
    font-size: 0.95rem;
}

.message.me {
    background: #2a8f2a; /* verde oscuro */
    align-self: flex-end;
    color: #fff;
}

.message.other {
    background: #333; /* gris oscuro */
    align-self: flex-start;
    color: #fff;
}

/* Hora en cada mensaje */
.message .time {
    font-size: 0.75rem;
    color: #ccc;
    position: absolute;
    bottom: 2px;
    right: 8px;
}