/**
 * BeMoveChat Admin Dashboard — Custom Styles
 *
 * Prefix: bemove-admin- (konsisten dengan bemove- convention di bemove.css)
 * Digunakan oleh: modules/admin/views/index.php
 */

/* ===================================================================
 * STAT CARDS
 * =================================================================== */
.bemove-stat-card {
    min-height: 120px;
    position: relative;
    overflow: hidden;
}
.bemove-stat-card .inner h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

/* ===================================================================
 * HEADER AVATAR
 * =================================================================== */
.bemove-admin-header-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.7rem;
    flex-shrink: 0;
    overflow: hidden;
    background-color: var(--bs-primary, #0d6efd);
    color: #fff;
}
.bemove-admin-header-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================================================================
 * USER TABLE CELL
 * =================================================================== */
.bemove-admin-user-cell {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}
.bemove-admin-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.75rem;
    flex-shrink: 0;
    overflow: hidden;
    background-color: var(--bs-secondary, #6c757d);
    color: #fff;
}
.bemove-admin-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================================================================
 * SEARCH
 * =================================================================== */
.bemove-admin-search {
    max-width: 240px;
    width: 100%;
}

/* ===================================================================
 * ACTION BUTTONS
 * =================================================================== */
.bemove-admin-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.25rem;
}

/* ===================================================================
 * SIDEBAR ACTIVE STATE
 * =================================================================== */
.bemove-admin-sidebar .nav-link.active,
.app-sidebar .sidebar-menu .nav-link.active {
    background-color: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* ===================================================================
 * LAST SEEN TEXT
 * =================================================================== */
.bemove-last-seen {
    font-size: 0.8rem;
    color: var(--bs-secondary-color, #6c757d);
}
.bemove-last-seen.online {
    color: var(--bs-success, #198754);
    font-weight: 500;
}

/* ===================================================================
 * RESPONSIVE
 * =================================================================== */
@media (max-width: 767.98px) {
    .bemove-stat-card .inner h3 {
        font-size: 1.4rem;
    }
    .bemove-stat-card .inner p {
        font-size: 0.75rem;
    }
    .bemove-admin-search {
        max-width: 100%;
    }
}
