/* ==========================================================================
   OREGONS CHAT - COMPONENTES DE LA PORTADA PRINCIPAL (HEADER Y LISTA)
   ========================================================================== */

/* Encabezado superior estilo WhatsApp */
.header-portada {
    width: 100%;
    height: 60px;
    background-color: #1e1e1e;
    display: flex;
    align-items: center;
    padding: 0 16px;
    border-bottom: 1px solid #2d2d2d;
    box-sizing: border-box;
}

.header-portada h1 {
    color: #ff6b00; /* ¡Naranja OREGONS oficial! */
    font-size: 22px;
    font-weight: bold;
    margin: 0;
    font-family: Arial, sans-serif;
}
/* Contenedor central donde flotarán los chats */
.contenedor-lista-conversaciones {
    flex: 1;
    width: 100%;
    overflow-y: auto;
    padding-bottom: 65px; /* Espacio de seguridad para que la barra inferior no tape el último chat */
    box-sizing: border-box;
}

/* Fila de cada chat individual */
.item-chat-cliente {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #252525;
    cursor: pointer;
}

/* Círculo de la foto de perfil */
.avatar-cliente {
    width: 50px;
    height: 50px;
    background-color: #4f4f4f;
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
}

/* Bloque de textos del chat */
.info-chat-cliente {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fila-superior-chat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.nombre-cliente {
    color: #e1e1e1;
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}

.hora-chat {
    color: #858585;
    font-size: 12px;
}

.ultimo-mensaje-cliente {
    color: #a0a0a0;
    font-size: 14px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* Pone tres puntitos (...) si el mensaje es muy largo */
}
