/* assets/css/style.css */

/* ==========================================================================
   1. CORE VARIABLES & DESIGN TOKENS (Apple-Inspired)
   ========================================================================== */
:root {
    /* Colors (Light Theme) */
    --primary-color: #0066cc; /* Action Blue */
    --primary-focus: #0071e3;
    --accent-color: #2997ff;
    --bg-main: #f5f5f7; /* Parchment Apple */
    --bg-card: #ffffff; /* Pure White */
    --bg-input: rgba(0, 0, 0, 0.02);
    --accent-ring: rgba(0, 102, 204, 0.15);
    --text-primary: #1d1d1f; /* Near-Black Ink */
    --text-secondary: #86868b; /* Soft Gray */
    --border-color: rgba(0, 0, 0, 0.08); /* Faint hairline */
    --success-color: #34c759; /* Apple green */
    --danger-color: #ff3b30; /* Apple red */
    
    /* Layout & Surface */
    --capsule-bg: rgba(255, 255, 255, 0.8);
    --capsule-border: rgba(0, 0, 0, 0.06);
    --capsule-shadow: 0 12px 30px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
    --topbar-bg: rgba(255, 255, 255, 0.8);
    
    /* Typography & Radius */
    --font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-pill: 9999px;
}

/* Colors (Dark Theme) */
body.dark-mode {
    --bg-main: #000000; /* Void Black */
    --bg-card: #1c1c1e; /* Apple Dark Tile 1 */
    --bg-input: rgba(255, 255, 255, 0.04);
    --accent-ring: rgba(0, 102, 204, 0.25);
    --text-primary: #f5f5f7; /* Off-White */
    --text-secondary: #86868b;
    --border-color: rgba(255, 255, 255, 0.12);
    
    /* Surface Modifiers */
    --capsule-bg: rgba(28, 28, 30, 0.8);
    --capsule-border: rgba(255, 255, 255, 0.1);
    --capsule-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 1px 8px rgba(255, 255, 255, 0.02);
    --topbar-bg: rgba(28, 28, 30, 0.8);
    
    /* Override inputs and selects for dark mode */
    --button-pearl: #2c2c2e;
    --button-pearl-border: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   2. GLOBAL STYLE RESET & TRANSITIONS
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.47;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    transition: background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                color 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Standard Typography Rhythm */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

h1 { font-size: 2.25rem; line-height: 1.1; }
h2 { font-size: 1.75rem; line-height: 1.2; }
h3 { font-size: 1.25rem; line-height: 1.3; }

p {
    font-size: 1.0625rem; /* 17px Apple Standard */
    color: var(--text-secondary);
    line-height: 1.47;
    letter-spacing: -0.022em;
}

/* ==========================================================================
   3. ANIMATIONS & MICRO-INTERACTIONS
   ========================================================================== */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Hover and Active Scale Utilities */
.btn, .floating-nav-item, .mode-toggle-btn, .theme-toggle-btn {
    transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn:active, .floating-nav-item:active, .theme-toggle-btn:active {
    transform: scale(0.95) !important;
}

/* ==========================================================================
   4. LAYOUT & CONTAINERS (Full Width + Centered Grid)
   ========================================================================== */
.dashboard-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
}

.main-content {
    flex: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    padding-bottom: 120px; /* Spacer for bottom capsule */
}

/* Sticky topbar */
.topbar {
    position: sticky;
    top: 0;
    z-index: 99;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--topbar-bg);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.85rem 2rem;
    transition: background-color 0.3s, border-color 0.3s;
}

.topbar-brand {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--text-primary);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-profile {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ==========================================================================
   5. SHARP & PREMIUM FORM CONTROLS
   ========================================================================== */
.form-group {
    margin-bottom: 1.5rem;
    width: 100%;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.form-control, .form-input, select, textarea {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-primary);
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    outline: none;
    transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    -webkit-appearance: none;
    box-sizing: border-box;
}

.form-control:focus, .form-input:focus, select:focus, textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px var(--accent-ring);
    background-color: var(--bg-card);
}

/* ==========================================================================
   6. PREMIUM CAPSULE BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
    border: 1px solid transparent;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-pill);
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
    min-height: 44px; /* Touch target standard */
}

.btn-primary, .btn-submit {
    color: #ffffff !important;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover, .btn-submit:hover {
    background-color: var(--primary-focus);
    border-color: var(--primary-focus);
}

.btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.8125rem;
    min-height: 36px;
}

.btn-info {
    background-color: var(--bg-main);
    color: var(--primary-color) !important;
    border: 1px solid var(--border-color);
}

.btn-info:hover {
    background-color: var(--primary-color);
    color: #ffffff !important;
    border-color: var(--primary-color);
}

.btn-danger {
    background-color: rgba(255, 59, 48, 0.08);
    color: var(--danger-color) !important;
    border: 1px solid rgba(255, 59, 48, 0.15);
}

.btn-danger:hover {
    background-color: var(--danger-color);
    color: #ffffff !important;
    border-color: var(--danger-color);
}

/* ==========================================================================
   7. STUNNING BOTTOM FLOATING CAPSULE NAVIGATION (Expanding Pill)
   ========================================================================== */
.floating-nav-capsule {
    position: fixed;
    bottom: 24px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: max-content;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--capsule-bg);
    border: 1px solid var(--capsule-border);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-radius: var(--radius-pill);
    box-shadow: var(--capsule-shadow);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    max-width: 95vw;
}

.floating-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--radius-pill);
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    height: 44px;
    user-select: none;
}

.floating-nav-item i {
    font-size: 1.125rem;
    transition: transform 0.2s ease;
}

.floating-nav-item:hover {
    background: rgba(0, 102, 204, 0.08);
    color: var(--primary-color);
}

.floating-nav-item:hover i {
    transform: translateY(-2px);
}

.floating-nav-item.active {
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.25);
}

.floating-nav-item .nav-text {
    transition: max-width 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
    max-width: 200px;
    opacity: 1;
    display: inline-block;
}

/* Dark mode specific capsule active item link hover override */
body.dark-mode .floating-nav-item:hover:not(.active) {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

/* ==========================================================================
   8. CARD & TABLE COMPONENT STYLING
   ========================================================================== */
.card {
    background: var(--bg-card);
    border-radius: 20px; /* Modern ultra-rounded card */
    border: 1px solid var(--border-color); /* Premium crisp semantic border (high-contrast light/dark) */
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.015);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.03);
}

body.dark-mode .card:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

/* Highly refined Stats Cards (Zero side-stripe slop, professional grid layout) */
.card-stats {
    padding: 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 125px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-stats:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.03);
}

body.dark-mode .card-stats:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.card-stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.card-stats-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
    margin: 0;
}

.card-stats-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(0, 102, 204, 0.06);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

body.dark-mode .card-stats-icon {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.card-stats-icon.accent-success {
    background: rgba(52, 199, 89, 0.08);
    color: var(--success-color);
}

.card-stats-icon.accent-danger {
    background: rgba(255, 59, 48, 0.08);
    color: var(--danger-color);
}

.card-stats-value {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.04em;
    margin-top: 0.75rem;
    font-variant-numeric: tabular-nums; /* Tabular numerals for clean vertical visual rhythm */
    line-height: 1;
}

/* Premium Human-crafted List Items for Rekan Evaluator (Anti-Nested-Boxes) */
.evaluator-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.evaluator-row:last-child {
    border-bottom: none;
}

.evaluator-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 102, 204, 0.06);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

body.dark-mode .evaluator-avatar {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

/* Rapor Link Micro-interaction (chevron slide) */
.rapor-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.rapor-link:hover {
    color: var(--primary-focus);
    gap: 8px; /* Chevron slides out horizontally! */
}


.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
}

th {
    background-color: var(--bg-main);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
}

td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 0.9375rem;
    vertical-align: middle;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background-color: rgba(0, 102, 204, 0.02);
}

body.dark-mode tr:hover td {
    background-color: rgba(255, 255, 255, 0.02);
}

/* System Mode Capsule Toggle */
.mode-toggle-container {
    display: flex;
    background: rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-pill);
    padding: 3px;
    border: 1px solid var(--border-color);
}

body.dark-mode .mode-toggle-container {
    background: rgba(255, 255, 255, 0.04);
}

.mode-toggle-btn {
    text-align: center;
    padding: 0.45rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-pill);
    transition: all 0.2s ease;
    cursor: pointer;
}

.mode-toggle-btn:hover {
    color: var(--text-primary);
}

.mode-toggle-btn.active {
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.2);
}

/* Theme Toggle Button */
.theme-toggle-btn {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    background-color: var(--bg-card);
}

.theme-toggle-btn:hover {
    background-color: var(--bg-main);
}

/* Alerts */
.alert {
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
}

.alert-danger {
    color: #d32f2f;
    background-color: rgba(255, 59, 48, 0.06);
    border-color: rgba(255, 59, 48, 0.12);
}

.alert-success {
    color: #388e3c;
    background-color: rgba(52, 199, 89, 0.06);
    border-color: rgba(52, 199, 89, 0.12);
}

/* ==========================================================================
   9. ABSOLUTE RESPONSIVE RESPONSIVENESS & ANTI-KACAU ATURAN
   ========================================================================== */
@media (max-width: 640px) {
    h1 { font-size: 1.65rem; }
    h2 { font-size: 1.35rem; }
    h3 { font-size: 1.125rem; }
    p { font-size: 0.95rem; }
    
    .main-content {
        padding: 1rem;
        padding-bottom: 110px; /* Space for capsule */
    }
    
    .card {
        padding: 1.25rem;
        border-radius: var(--radius-md);
    }
    
    .topbar {
        padding: 0.75rem 1rem;
    }
    
    .topbar-brand {
        font-size: 1.05rem;
    }
    
    .user-profile span {
        display: none;
    }
    
    /* ----------------------------------------------------------------------
       Expanding Pill Bottom Navigation for Mobile (Genius UX)
       ---------------------------------------------------------------------- */
    .floating-nav-capsule {
        bottom: 16px;
        left: 0;
        right: 0;
        margin: 0 auto;
        padding: 6px;
        gap: 4px;
        max-width: 95vw;
        box-shadow: 0 8px 30px rgba(0,0,0,0.18);
    }
    
    .floating-nav-item {
        padding: 10px;
        width: 44px;
        height: 44px;
        justify-content: center;
    }
    
    /* Hide label text on mobile for inactive items */
    .floating-nav-item .nav-text {
        max-width: 0;
        opacity: 0;
        margin: 0;
        display: none;
    }
    
    /* Active item expands beautifully */
    .floating-nav-item.active {
        width: auto;
        padding: 10px 16px;
    }
    
    .floating-nav-item.active .nav-text {
        display: inline-block;
        max-width: 120px;
        opacity: 1;
        margin-left: 6px;
    }
    
    /* Ensure forms, grids, tables collapse to 1-column on mobile */
    .stats-grid, .agenda-grid, .grid, .grid-3, .grid-4 {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
}

/* ==========================================================================
   10. PREMIUM AUTH & PORTAL CARDS (Apple/SaaS Inspired)
   ========================================================================== */
.auth-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    background-color: var(--bg-main);
    padding: 2rem 1.5rem;
    transition: background-color 0.3s ease;
}

.auth-card {
    background: var(--bg-card);
    width: 100%;
    max-width: 440px;
    padding: 3.25rem 2.75rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.03);
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

body.dark-mode .auth-card {
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.auth-header {
    text-align: center;
}

.auth-header h1 {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--primary-color);
}

.auth-header p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
    letter-spacing: -0.01em;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.75rem 0;
    color: var(--text-secondary);
    font-size: 0.8125rem;
    font-weight: 500;
}

.divider::before, .divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-color);
}

.divider:not(:empty)::before { margin-right: 1.25rem; }
.divider:not(:empty)::after { margin-left: 1.25rem; }

.btn-google {
    background: var(--bg-card) !important;
    color: var(--text-primary) !important;
    border: 1px solid var(--border-color) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 0.9375rem;
    width: 100%;
    border-radius: var(--radius-pill);
    transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    min-height: 44px;
}

.btn-google:hover {
    background: var(--bg-input) !important;
    border-color: var(--text-secondary) !important;
}

.btn-google img {
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.05));
}

.back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.back-link:hover {
    color: var(--primary-focus);
    transform: translateX(-2px);
}

/* ==========================================================================
   9. TOPBAR RESPONSIVE & MOBILE OVERRIDES
   ========================================================================== */
@media (max-width: 768px) {
    .topbar {
        padding: 0.65rem 1rem;
    }
    
    .topbar-brand {
        font-size: 1.1rem;
    }
    
    .user-profile span:first-of-type {
        display: inline-block;
        max-width: 75px; /* Prevent long names from breaking the layout */
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 0.75rem;
        font-weight: 600;
    }
    
    .user-profile span:last-of-type {
        display: none; /* Hide role on mobile to save space */
    }
    
    .user-profile {
        padding: 0.35rem 0.65rem;
        width: auto;
        height: 36px;
        border-radius: var(--radius-pill);
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
    }
    
    .topbar-right {
        gap: 0.5rem;
    }
}

@media (max-width: 600px) {
    .topbar-brand {
        display: none; /* Hide brand title on small screens because page_title is already displayed prominently below the topbar */
    }
    
    .topbar-right {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    /* Pure CSS magic: push theme toggle and user profile to the far right, leaving switcher on the left */
    .theme-toggle-btn {
        margin-left: auto;
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
        flex-shrink: 0;
    }
    
    .mode-toggle-container {
        padding: 3px;
        background: rgba(0, 0, 0, 0.04);
        flex-shrink: 0;
    }
    
    body.dark-mode .mode-toggle-container {
        background: rgba(255, 255, 255, 0.04);
    }
    
    .mode-toggle-btn {
        padding: 0.5rem 0.9rem; /* Touch friendly, spacious padding */
        font-size: 0.8125rem; /* Larger, extremely readable font size */
    }
    
    .user-profile {
        padding: 0.45rem 0.75rem;
        height: 38px;
        gap: 0.4rem;
        flex-shrink: 0;
    }
    
    .user-profile span:first-of-type {
        font-size: 0.8125rem;
        max-width: 85px; /* Wider and cleaner name presentation */
    }
}