/* Extracted from inline <style> */
.auth-only { display: none; }
    .guest-only { display: flex; }
    .admin-only { display: none; }
    .customer-only { display: none; }

    .account-section {
      padding: 35px 0 50px;
      min-height: 70vh;
      background: #f8f9fa;
    }

    .account-container {
      display: grid;
      grid-template-columns: 300px 1fr;
      gap: 25px;
      align-items: start;
    }

    @media (max-width: 992px) {
      .account-container { grid-template-columns: 1fr; }
    }

    .account-sidebar {
      background: #fff;
      border-radius: 20px;
      padding: 25px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      position: sticky;
      top: 95px;
      height: fit-content;
    }

    @media (max-width: 992px) {
      .account-sidebar { position: static; }
    }

    .user-card {
      text-align: center;
      padding-bottom: 18px;
      margin-bottom: 18px;
      border-bottom: 1px solid #eee;
    }

    .user-avatar {
      width: 92px;
      height: 92px;
      border-radius: 50%;
      margin: 0 auto 12px;
      background: #f0f7ff;
      border: 4px solid #f0f7ff;
      display: grid;
      place-items: center;
      color: #1a6db3;
      font-size: 34px;
    }

    .user-name {
      font-size: 1.25rem;
      color: #1a3e72;
      margin: 0;
    }

    .user-email {
      margin-top: 5px;
      font-size: 0.9rem;
      color: #666;
      word-break: break-word;
    }

    .sidebar-menu {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 10px;
    }

    .menu-link {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 13px 16px;
      border-radius: 12px;
      text-decoration: none;
      color: #555;
      transition: all .25s ease;
      background: #fff;
      border: 1px solid #f0f0f0;
    }

    .menu-link i { width: 20px; color: #777; }
    .menu-link:hover { background: #f0f7ff; color: #1a6db3; border-color: #e3f2fd; }
    .menu-link.active { background: #1a6db3; color: #fff; border-color: #1a6db3; font-weight: 600; }
    .menu-link.active i { color: #fff; }

    .logout-btn {
      width: 100%;
      margin-top: 18px;
      padding: 12px 14px;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      background: #ffeaea;
      color: #e74c3c;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: all .25s ease;
    }
    .logout-btn:hover { background: #e74c3c; color: #fff; }

    .account-content {
      background: #fff;
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .content-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 15px;
      margin-bottom: 18px;
      padding-bottom: 18px;
      border-bottom: 1px solid #eee;
    }

    .content-title {
      font-size: 1.7rem;
      color: #1a3e72;
      margin: 0;
    }

    .content-subtitle {
      color: #666;
      margin-top: 6px;
      font-size: 0.95rem;
    }

    .tab-panel { display: none; }
    .tab-panel.active { display: block; }

    .profile-form {
      max-width: 820px;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 16px;
    }
    @media (max-width: 650px) {
      .form-row { grid-template-columns: 1fr; }
    }
    .form-group { margin-bottom: 16px; }
    .form-label { display:block; font-weight: 600; color:#2c3e50; margin-bottom: 7px; }
    .form-control {
      width: 100%;
      padding: 13px 16px;
      border: 2px solid #e0e0e0;
      border-radius: 12px;
      font-size: 1rem;
      font-family: 'Open Sans', sans-serif;
      background: #f8f9fa;
    }

    /* Orders list (compact) */
    .order-card {
      border: 2px solid #f0f7ff;
      border-radius: 16px;
      padding: 16px;
      margin-bottom: 12px;
      transition: all .25s ease;
    }
    .order-card:hover {
      border-color: #1a6db3;
      box-shadow: 0 5px 15px rgba(26, 109, 179, 0.10);
    }
    .order-head {
      display:flex;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 8px;
    }
    .order-num { font-weight: 800; color:#1a3e72; }
    .order-date { color:#777; font-size: 0.9rem; margin-top: 3px; }
    .order-badges { display:flex; gap:8px; flex-wrap:wrap; align-items:center; }

    .badge {
      display:inline-flex;
      align-items:center;
      gap: 6px;
      padding: 6px 10px;
      border-radius: 999px;
      font-size: 0.85rem;
      font-weight: 700;
      border: 1px solid #e3f2fd;
      background: #f0f7ff;
      color: #1a3e72;
      white-space: nowrap;
    }
    .badge.gray { border-color:#eee; background:#fafafa; color:#555; }
    .order-meta {
      display:grid;
      grid-template-columns: 1fr;
      gap: 8px;
      color:#444;
      padding-top: 10px;
      border-top: 1px solid #eee;
    }

    .empty-state {
      text-align:center;
      color:#777;
      padding: 20px;
      border: 1px dashed #dfe6e9;
      border-radius: 16px;
      background: #fafafa;
    }
    .empty-state i { font-size: 26px; color:#1a6db3; margin-bottom: 8px; }

    /* Settings */
    .settings-grid {
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 10px;
    }
    @media (max-width: 800px) {
      .settings-grid { grid-template-columns: 1fr; }
    }
    .settings-card {
      border: 2px solid #f0f7ff;
      border-radius: 16px;
      padding: 16px;
    }
    .settings-card h3 {
      margin: 0 0 8px;
      color:#1a3e72;
      font-size: 1.1rem;
    }
    .settings-card p { margin: 0 0 12px; color:#666; }
    .toggle-row {
      display:flex;
      align-items:center;
      justify-content: space-between;
      gap: 12px;
      border: 1px solid #eee;
      padding: 12px 14px;
      border-radius: 12px;
      background: #fafafa;
    }
    .danger {
      border-color: #ffd5d5;
      background: #fff5f5;
    }
    .danger .btn {
      background: #e74c3c;
      border-color: #e74c3c;
      color: #fff;
    }
    .danger .btn:hover { filter: brightness(0.95); 
    .order-item-row{
  display:flex;
  justify-content: space-between;
  gap: 10px;
  color:#333;
  padding: 6px 0;
}
.order-item-row + .order-item-row{
  border-top: 1px dashed #eee;
}
    }

/* Extracted from inline style attributes */
.inl-cb458930{display:none;}
.inl-200a92a0{text-align:left;}
.inl-0f9ed712{margin:6px 0 0;}
.inl-002535c2{margin-top:12px;}
.inl-64260acb{display:none; margin-top:12px;}
.inl-84700550{font-size:0.9rem; opacity:.85; margin-top:6px;}
.inl-a6bc599d{display:none; margin:10px 0; padding:10px 12px; border-radius:10px;}
.inl-493b1c85{grid-column: 1 / -1;}
