<div class="sidebar">
  <a href="/" class="brand">
    <div class="brand-icon" style="background: none; box-shadow: none; border-radius: 50%; overflow: hidden; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;">
      <img src="/logo.jpg" alt="NAM VIỆT Logo" style="width: 100%; height: 100%; object-fit: contain;">
    </div>
    <span class="brand-name">NAM VIỆT</span>
  </a>

  <ul class="nav-links" style="flex: 1;">
    <li>
      <a href="/" class="nav-link <%= activePage === 'dashboard' ? 'active' : '' %>">
        <i class="fas fa-chart-pie"></i>
        <span>Dashboard</span>
      </a>
    </li>
    <li>
      <a href="/vehicles" class="nav-link <%= activePage === 'vehicles' ? 'active' : '' %>">
        <i class="fas fa-car"></i>
        <span>Quản Lý Xe</span>
      </a>
    </li>
    <li>
      <a href="/tickets" class="nav-link <%= activePage === 'tickets' ? 'active' : '' %>">
        <i class="fas fa-ticket-alt"></i>
        <span>Bán Vé Thuê Xe</span>
      </a>
    </li>
    <li>
      <a href="/pricing" class="nav-link <%= activePage === 'pricing' ? 'active' : '' %>">
        <i class="fas fa-coins"></i>
        <span>Cấu Hình Giá Xe</span>
      </a>
    </li>
  </ul>

  <!-- Logged in user info & Logout Button at the bottom -->
  <div style="border-top: 1px solid var(--border-color); padding-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem;">
    <div style="display: flex; align-items: center; gap: 0.75rem;">
      <div class="avatar" style="width: 34px; height: 34px; font-size: 0.95rem;">
        <%= (typeof currentUser !== 'undefined' && currentUser.name) ? currentUser.name.substring(0, 1).toUpperCase() : 'A' %>
      </div>
      <div style="overflow: hidden; text-overflow: ellipsis; white-space: nowrap;">
        <div style="font-size: 0.85rem; font-weight: 700; color: #fff;">
          <%= (typeof currentUser !== 'undefined') ? currentUser.name : 'Quản trị viên' %>
        </div>
        <div style="font-size: 0.7rem; color: var(--text-muted); text-transform: capitalize;">
          <%= (typeof currentUser !== 'undefined') ? currentUser.role : 'admin' %>
        </div>
      </div>
    </div>
    
    <a href="/logout" class="nav-link" style="color: var(--danger); padding: 0.6rem 1rem; font-size: 0.9rem; background: rgba(239, 68, 68, 0.05); border: 1px solid rgba(239, 68, 68, 0.1);">
      <i class="fas fa-sign-out-alt"></i>
      <span>Đăng Xuất</span>
    </a>
  </div>
</div>
