/* =========================================================
   File    : /app/ui/assets/users.panel.css
   Purpose : Users admin panel styling (content only)
   Solution: Familie Engelbracht
   Version : v1.1.0 – 04-02-2026
   ========================================================= */

/* =========================================================
   PANEL BASE
   ========================================================= */

.users-panel {
    --panel-width: 640px;

    background: #ffffff;
    color: #222;
    width: var(--panel-width);
    max-width: 95vw;

    padding: 20px 24px;
    box-sizing: border-box;
    border-radius: 6px;
}

/* =========================================================
   HEADINGS
   ========================================================= */

.users-panel h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 1.2rem;
}

/* =========================================================
   TABLE
   ========================================================= */

#users-admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

#users-admin-table th,
#users-admin-table td {
    text-align: left;
    padding: 6px 8px;
    border-bottom: 1px solid #eee;
}

#users-admin-table th {
    background: #f5f5f5;
    font-weight: 600;
}

/* =========================================================
   ACTION BUTTONS
   ========================================================= */

.users-panel .actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 16px;
}

.users-panel button {
    padding: 6px 14px;
    font-size: 0.9rem;
    border-radius: 3px;
    border: 1px solid #888;
    background: #eee;
    cursor: pointer;
}

.users-panel button:hover {
    background: #e6e6e6;
}
