/* ═══════════════════════════════════════════════════════════════════════════════
   3. SIDEBAR (Panel Lateral)
   Panel izquierdo con lista de chats, búsqueda y acciones
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────────
   3.1 Contenedor Principal del Sidebar
   ───────────────────────────────────────────────────────────────────────────── */
.sidebar {
    width: 400px;
    background: #111b21;
    border-right: 1px solid #313d45;
    display: flex;
    flex-direction: column;
}

/* ─────────────────────────────────────────────────────────────────────────────
   3.2 Header del Sidebar
   ───────────────────────────────────────────────────────────────────────────── */

.sidebar-header {
    background: #202c33;
    padding: 10px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #313d45;
}

/* ─────────────────────────────────────────────────────────────────────────────
   3.3 Información del Usuario
   ───────────────────────────────────────────────────────────────────────────── */

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: #00a884;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.user-name {
    color: #e9edef;
    font-weight: 400;
    font-size: 16px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   3.4 Botones de Acción del Header
   ───────────────────────────────────────────────────────────────────────────── */

.header-actions {
    display: flex;
    gap: 8px;
}

.action-btn {
    background: none;
    border: none;
    color: #aebac1;
    font-size: 20px;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s;
}

.action-btn:hover {
    background: #313d45;
    color: #e9edef;
}

/* ─────────────────────────────────────────────────────────────────────────────
   3.5 Barra de Búsqueda
   ───────────────────────────────────────────────────────────────────────────── */

.search-container {
    padding: 12px;
    background: #111b21;
}

.search-box {
    background: #202c33;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    gap: 12px;
}

.search-box i {
    color: #aebac1;
    font-size: 14px;
}

.search-box input {
    background: none;
    border: none;
    color: #e9edef;
    font-size: 14px;
    width: 100%;
    outline: none;
}

.search-box input::placeholder {
    color: #aebac1;
}

/* ─────────────────────────────────────────────────────────────────────────────
   3.6 Lista de Chats
   Contenedor scrolleable con los items de chat
   ───────────────────────────────────────────────────────────────────────────── */

.chat-list {
    flex: 1;
    overflow-y: auto;
    background: #111b21;
}

.loading-chats {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: #aebac1;
    gap: 12px;
}

.chat-item {
    padding: 12px 16px;
    border-bottom: 1px solid #313d45;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-item:hover {
    background: #202c33;
}

.chat-item.active {
    background: #2a3942;
}

.chat-avatar {
    width: 48px;
    height: 48px;
    background: #00a884;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.chat-info {
    flex: 1;
    min-width: 0;
}

.chat-name {
    color: #e9edef;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 2px;
}

.chat-last-message {
    color: #aebac1;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.chat-time {
    color: #aebac1;
    font-size: 12px;
}

.unread-count {
    background: #00a884;
    color: white;
    border-radius: 50%;
    padding: 3px 8px;
    font-size: 12px;
    font-weight: 600;
    min-width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

