/**
 * SADJA Custom Overrides - Theme Update Safe
 * Location: /modules/addons/RSThemes/assets/css/sadja-overrides.css
 * 
 * This file will NOT be overwritten when the Lagom theme is updated.
 * To include this file, add it via:
 *   - WHMCS Admin → Addons → RSThemes → Settings → Custom CSS
 *   - Or add a <link> tag in a custom header hook
 * 
 * Created: 2025-12-10
 */

/* ============================================
   HIDE USER ID IN ACCOUNT DROPDOWN
   ============================================ */
/* 
 * Problem: When "Show Client ID" is enabled, the dropdown shows User ID (#102)
 * but the dashboard shows Account/Client ID (#137967). This confuses clients.
 * 
 * Solution: Hide the User ID line in the dropdown, so clients only see
 * and use the Account ID shown on the dashboard.
 */

/* Hide the User ID + Name line in dropdown header */
.dropdown-menu .dropdown-header--account .dropdown-header-info .dropdown-header-title {
    display: none !important;
    visibility: hidden !important;
}

/* Keep the company name visible in dropdown */
.dropdown-menu .dropdown-header--account .dropdown-header-info .dropdown-header-desc {
    display: block !important;
    visibility: visible !important;
    font-size: 14px !important;
    font-weight: 600;
    color: var(--text-heading-color);
}

/* Ensure the avatar still shows properly */
.dropdown-header--account .client-avatar {
    display: flex !important;
}

/* ============================================
   EMAIL TEMPLATE LOGIN BUTTON (if not using template edit)
   ============================================ */
/* These styles are applied via template file edits, 
   but keeping here as backup reference */

/* ============================================
   ADDITIONAL CUSTOM OVERRIDES
   ============================================ */
/* Add any other custom overrides below this line */
/* These will persist through theme updates */