* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Cairo", sans-serif;
}

body {
  background: #0a0e1a;
  color: #e2e8f0;
  display: flex;
  min-height: 100vh;
}

/* SIDEBAR */
.sidebar {
  width: 260px;
  background: #111827;
  border-left: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  z-index: 100;
  transition: 0.3s;
}

.sidebar-header {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.logo-box {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0ea5e9, #6366f1, #a855f7);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
  flex-shrink: 0;
}

.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.sidebar-header span {
  font-size: 20px;
  font-weight: 900;
  background: linear-gradient(135deg, #0ea5e9, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sidebar-nav {
  flex: 1;
  padding: 16px 12px;
  overflow-y: auto;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  color: #64748b;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
  margin-bottom: 4px;
  text-decoration: none;
}

.nav-item:hover {
  color: #e2e8f0;
  background: rgba(255,255,255,0.05);
}

.nav-item.active {
  color: white;
  background: linear-gradient(135deg, rgba(14,165,233,0.2), rgba(99,102,241,0.2));
  border: 1px solid rgba(14,165,233,0.2);
}

.nav-item i { font-size: 18px; width: 24px; text-align: center; }

.sidebar-footer {
  padding: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.logout-btn {
  width: 100%;
  padding: 12px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.2);
  color: #f87171;
  border-radius: 12px;
  font-family: "Cairo";
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.3s;
}

.logout-btn:hover { background: rgba(239,68,68,0.2); }

/* MAIN */
.main-content {
  flex: 1;
  margin-right: 260px;
  min-height: 100vh;
}

/* TOPBAR */
.topbar {
  height: 70px;
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 50;
}

.sidebar-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
}

.topbar-search {
  flex: 1;
  max-width: 400px;
  position: relative;
}

.topbar-search i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #475569;
}

.topbar-search input {
  width: 100%;
  padding: 10px 40px 10px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  color: white;
  font-family: "Cairo";
  outline: none;
}

.topbar-search input:focus { border-color: #38bdf8; }

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-right: auto;
}

.notif-btn {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #94a3b8;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 18px;
  transition: 0.3s;
}

.notif-btn:hover { color: white; }

.notif-badge {
  position: absolute;
  top: -4px;
  left: -4px;
  background: #ef4444;
  color: white;
  font-size: 11px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  animation: notifPulse 2s infinite;
}

/* User Menu */
.user-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 12px;
  transition: 0.3s;
}

.user-menu:hover {
  background: rgba(255,255,255,0.05);
}

.user-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(56,189,248,0.3);
  transition: 0.3s;
  background: #1e293b;
}

.user-menu:hover .user-avatar {
  border-color: #38bdf8;
  transform: scale(1.05);
}

.user-name { font-weight: 700; font-size: 14px; }

/* PAGES */
.page {
  display: none;
  padding: 24px;
  animation: fadeIn 0.3s;
}

.page.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.page-header h1 {
  font-size: 28px;
  font-weight: 800;
}

.page-header p {
  color: #64748b;
  font-size: 15px;
}

/* STATS */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: 0.3s;
}

.stat-card:hover { border-color: rgba(255,255,255,0.12); }

.stat-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.stat-card-icon.blue { background: rgba(14,165,233,0.15); color: #38bdf8; }
.stat-card-icon.green { background: rgba(16,185,129,0.15); color: #34d399; }
.stat-card-icon.purple { background: rgba(139,92,246,0.15); color: #a78bfa; }
.stat-card-icon.orange { background: rgba(245,158,11,0.15); color: #fbbf24; }

.stat-card-label { font-size: 13px; color: #64748b; display: block; }
.stat-card-value { font-size: 24px; font-weight: 900; }

/* CARDS */
.dash-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
}

.dash-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* WALLET */
.wallet-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.wallet-card {
  border-radius: 20px;
  padding: 30px;
  text-align: center;
}

.balance-card {
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
}

.points-card {
  background: linear-gradient(135deg, #10b981, #059669);
}

.wallet-label {
  display: block;
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 8px;
}

.wallet-amount {
  display: block;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 20px;
}

.wallet-actions { display: flex; gap: 12px; justify-content: center; }

.wallet-btn {
  padding: 10px 20px;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: white;
  font-family: "Cairo";
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

.wallet-btn:hover { background: rgba(255,255,255,0.2); }

/* FORMS */
.modal-inline {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px;
  margin-top: 20px;
  animation: fadeIn 0.3s;
}

.modal-inline h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 14px;
  color: #cbd5e1;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: white;
  font-family: "Cairo";
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #38bdf8;
}

.form-group small {
  display: block;
  margin-top: 6px;
  color: #38bdf8;
  font-weight: 600;
}

.form-group select { cursor: pointer; }
.form-group select option { background: #1e293b; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: "Cairo";
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary:hover { transform: translateY(-2px); }

/* TABS */
.tab-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: #94a3b8;
  font-family: "Cairo";
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.tab-btn.active {
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  color: white;
  border-color: transparent;
}

/* TRANSACTIONS */
.transaction-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.transaction-item:last-child { border: none; }

.trans-info { display: flex; align-items: center; gap: 12px; }

.trans-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.trans-icon.deposit,
.trans-icon.earning { background: rgba(16,185,129,0.15); color: #34d399; }
.trans-icon.spending { background: rgba(239,68,68,0.15); color: #f87171; }
.trans-icon.withdraw { background: rgba(245,158,11,0.15); color: #fbbf24; }
.trans-icon.points_convert { background: rgba(139,92,246,0.15); color: #a78bfa; }
.trans-icon.info { background: rgba(14,165,233,0.15); color: #38bdf8; }

.trans-desc { font-size: 14px; font-weight: 600; }
.trans-date { font-size: 12px; color: #475569; }

.trans-amount { font-weight: 800; font-size: 15px; }
.trans-amount.positive { color: #34d399; }
.trans-amount.negative { color: #f87171; }

/* EMPTY STATE */
.empty-state {
  text-align: center;
  padding: 40px;
  color: #475569;
  font-size: 15px;
}

/* TOAST */
.toast-container {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  animation: slideIn 0.4s, slideOut 0.4s 3s forwards;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 300px;
}

.toast.success { background: #065f46; color: #34d399; border: 1px solid #059669; }
.toast.error { background: #7f1d1d; color: #fca5a5; border: 1px solid #dc2626; }
.toast.info { background: #1e3a5f; color: #93c5fd; border: 1px solid #2563eb; }

@keyframes slideIn { from { transform: translateX(-100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes slideOut { to { transform: translateX(-100%); opacity: 0; } }

.cost-preview {
  background: rgba(14,165,233,0.1);
  border: 1px solid rgba(14,165,233,0.2);
  padding: 10px 16px;
  border-radius: 10px;
  color: #38bdf8;
  font-weight: 700;
  margin: 10px 0;
}

/* ORDERS */
.order-item, .service-item-dash {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: 0.3s;
  flex-wrap: wrap;
}

.order-item:hover, .service-item-dash:hover {
  border-color: rgba(255,255,255,0.12);
}

.status-badge {
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}

.status-badge.pending { background: rgba(245,158,11,0.15); color: #fbbf24; }
.status-badge.active { background: rgba(16,185,129,0.15); color: #34d399; }
.status-badge.completed { background: rgba(14,165,233,0.15); color: #38bdf8; }
.status-badge.rejected { background: rgba(239,68,68,0.15); color: #f87171; }
.status-badge.processing { background: rgba(139,92,246,0.15); color: #a78bfa; }

/* SMM */
.smm-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.smm-step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #475569;
  transition: 0.3s;
}

.smm-step.active {
  background: linear-gradient(135deg, rgba(14,165,233,0.15), rgba(99,102,241,0.15));
  border-color: rgba(14,165,233,0.3);
  color: #38bdf8;
}

.smm-step.done {
  background: rgba(16,185,129,0.1);
  border-color: rgba(16,185,129,0.2);
  color: #34d399;
}

.smm-step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}

.smm-step.active .smm-step-number {
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  color: white;
}

.smm-step.done .smm-step-number {
  background: #10b981;
  color: white;
}

.smm-step-arrow {
  color: #334155;
  font-size: 14px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.platform-card {
  background: rgba(255,255,255,0.03);
  border: 2px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  font-family: "Cairo";
  color: #94a3b8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.platform-card i { font-size: 32px; }
.platform-card span { font-size: 13px; font-weight: 700; }

.platform-card:hover {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  transform: translateY(-3px);
}

.platform-card.selected {
  border-color: #38bdf8;
  background: rgba(14,165,233,0.1);
  color: #38bdf8;
}

.service-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.service-type-card {
  background: rgba(255,255,255,0.03);
  border: 2px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 20px;
  cursor: pointer;
  transition: 0.3s;
  font-family: "Cairo";
  text-align: right;
}

.service-type-card:hover { border-color: rgba(255,255,255,0.15); }
.service-type-card.selected { border-color: #38bdf8; background: rgba(14,165,233,0.08); }

.service-type-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: white;
}

.service-type-price {
  font-size: 13px;
  color: #38bdf8;
  font-weight: 700;
}

.service-type-range {
  font-size: 12px;
  color: #475569;
  margin-top: 4px;
}

.selected-service-info {
  background: rgba(14,165,233,0.08);
  border: 1px solid rgba(14,165,233,0.15);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.selected-service-info i { font-size: 28px; color: #38bdf8; }
.selected-service-info .info-text h4 { font-size: 16px; font-weight: 700; }
.selected-service-info .info-text span { font-size: 13px; color: #64748b; }

.price-calculator {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 20px;
  margin: 20px 0;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 14px;
  color: #94a3b8;
}

.price-row:last-child { border: none; }

.price-row.total {
  color: white;
  font-size: 18px;
  padding-top: 14px;
  border-top: 2px solid rgba(14,165,233,0.2);
  margin-top: 6px;
}

.price-row.total strong { color: #38bdf8; }
.price-row.balance strong { color: #34d399; }

.qty-range { font-size: 12px; color: #475569; margin-top: 6px; }

.success-payment { text-align: center; padding: 30px 0; }
.success-payment i { font-size: 60px; color: #10b981; margin-bottom: 16px; }
.success-payment h3 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.success-payment p { color: #64748b; font-size: 15px; }

.link-input-wrapper { position: relative; }
.link-input-wrapper i {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #475569;
  z-index: 2;
}
.link-input-wrapper input {
  padding-right: 44px !important;
  direction: ltr;
  text-align: left;
  font-family: monospace, Cairo;
  color: #38bdf8;
}

.order-complete { text-align: center; padding: 40px 0; }

.order-complete-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 20px;
  color: white;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(14,165,233,0.4); }
  50% { box-shadow: 0 0 0 20px rgba(14,165,233,0); }
}

.order-complete h2 { font-size: 26px; font-weight: 900; margin-bottom: 8px; }
.order-complete p { color: #64748b; font-size: 16px; margin-bottom: 24px; }

.order-summary {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 20px;
  text-align: right;
  max-width: 400px;
  margin: 0 auto 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 14px;
}

.summary-row:last-child { border: none; }

.order-complete-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.smm-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 20px;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #94a3b8;
  border-radius: 12px;
  font-family: "Cairo";
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.btn-back:hover { background: rgba(255,255,255,0.08); }

/* TASKS */
.task-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.task-stat-mini {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.task-stat-mini .stat-num {
  font-size: 24px;
  font-weight: 900;
  color: #38bdf8;
}

.task-stat-mini .stat-txt {
  font-size: 12px;
  color: #64748b;
  margin-top: 4px;
}

.task-filter-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.task-filter {
  padding: 8px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: transparent;
  color: #64748b;
  font-family: "Cairo";
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.task-filter.active {
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  color: white;
  border-color: transparent;
}

.task-card-new {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 12px;
  transition: 0.3s;
}

.task-card-new:hover {
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}

.task-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.task-platform-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  flex-shrink: 0;
}

.task-platform-icon.instagram { background: linear-gradient(135deg, #f09433, #dc2743); }
.task-platform-icon.youtube { background: #ff0000; }
.task-platform-icon.tiktok { background: #010101; }
.task-platform-icon.twitter { background: #1da1f2; }
.task-platform-icon.facebook { background: #1877f2; }

.task-card-body { margin-bottom: 14px; }
.task-card-body h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.task-card-body p { font-size: 13px; color: #64748b; line-height: 1.6; }

.task-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.task-card-reward {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(251,191,36,0.1);
  border: 1px solid rgba(251,191,36,0.2);
  padding: 6px 14px;
  border-radius: 10px;
  color: #fbbf24;
  font-weight: 800;
  font-size: 14px;
}

.task-card-progress { font-size: 12px; color: #475569; }

.task-execute-btn-new {
  padding: 10px 24px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: "Cairo";
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.task-execute-btn-new:hover { transform: translateY(-2px); }
.task-execute-btn-new.processing { background: #475569; cursor: not-allowed; }
.task-execute-btn-new.done { background: linear-gradient(135deg, #0ea5e9, #6366f1); }

/* PAYPAL DEPOSIT */
.deposit-info {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.15);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}

.deposit-info i { font-size: 32px; color: #34d399; }
.deposit-info strong { display: block; font-size: 15px; margin-bottom: 4px; }
.deposit-info p { font-size: 13px; color: #64748b; margin: 0; }

.quick-amounts {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 16px 0;
}

.quick-amount {
  flex: 1;
  min-width: 60px;
  padding: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: white;
  font-family: "Cairo";
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  font-size: 14px;
}

.quick-amount:hover {
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  border-color: transparent;
  transform: translateY(-2px);
}

/* MARKETPLACE */
.marketplace-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.mp-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s;
  cursor: pointer;
}

.mp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.mp-card-img {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: #0d1117;
}

.mp-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.mp-card:hover .mp-card-img img { transform: scale(1.08); }

.mp-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(14,165,233,0.9);
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  color: white;
}

.mp-card-body { padding: 16px; }

.mp-card-seller {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.mp-card-seller img { width: 28px; height: 28px; border-radius: 50%; }
.mp-card-seller-name { font-size: 12px; color: #94a3b8; font-weight: 600; flex: 1; }
.mp-card-rating { font-size: 12px; color: #fbbf24; font-weight: 700; }

.mp-card-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.5;
  min-height: 42px;
}

.mp-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.mp-card-price { font-size: 18px; font-weight: 900; color: #38bdf8; }
.mp-card-delivery { font-size: 11px; color: #64748b; display: flex; align-items: center; gap: 4px; }

.mp-card-btn {
  display: block;
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: "Cairo";
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}

.mp-card-btn:hover { transform: translateY(-1px); }

.pricing-info-bar {
  background: rgba(14,165,233,0.08);
  border: 1px solid rgba(14,165,233,0.2);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #38bdf8;
  font-weight: 600;
}

.pricing-info-bar.warning {
  background: rgba(245,158,11,0.08);
  border-color: rgba(245,158,11,0.2);
  color: #fbbf24;
}

.pricing-info-bar i { font-size: 18px; }

/* Service Detail Modal */
.service-detail-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: 0.3s;
}

.service-detail-modal.active { opacity: 1; }

.service-detail-box {
  background: #111827;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  width: 100%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.service-detail-close {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0,0,0,0.5);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-size: 16px;
}

.service-detail-image { width: 100%; height: 250px; object-fit: cover; }
.service-detail-content { padding: 24px; }
.service-detail-title { font-size: 22px; font-weight: 800; margin-bottom: 16px; }

.service-detail-info {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  margin-bottom: 16px;
}

.service-detail-info img { width: 44px; height: 44px; border-radius: 50%; }

.service-detail-desc {
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-detail-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.service-meta-item {
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}

.service-meta-item .label { font-size: 11px; color: #64748b; display: block; margin-bottom: 4px; }
.service-meta-item .value { font-size: 16px; font-weight: 800; color: white; }
.service-meta-item .value.price { color: #38bdf8; }

.service-buy-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: "Cairo";
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.service-buy-btn:hover { transform: translateY(-2px); }
.service-buy-btn:disabled { background: #475569; cursor: not-allowed; }

/* Order Detail Modal */
.order-detail-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: 0.3s;
}

.order-detail-modal.active { opacity: 1; }

.order-detail-box {
  background: #111827;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  width: 100%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 24px;
}

.order-detail-close {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.05);
  border: none;
  color: #94a3b8;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  z-index: 5;
  transition: 0.3s;
}

.order-detail-close:hover {
  background: rgba(239,68,68,0.2);
  color: #f87171;
}

.order-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-right: 50px;
}

.order-detail-header h2 { font-size: 22px; font-weight: 800; }

.order-status-badge {
  padding: 6px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
}

.order-detail-info {
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 20px;
}

.order-detail-info h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #38bdf8;
}

.order-parties {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.order-party { flex: 1; text-align: center; }
.party-label { display: block; font-size: 11px; color: #64748b; margin-bottom: 4px; }
.order-party strong { font-size: 14px; color: white; }
.order-arrow { color: #38bdf8; font-size: 24px; font-weight: 900; }

.order-amount-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #94a3b8;
}

.requirements-box {
  background: rgba(251,191,36,0.08);
  border: 1px solid rgba(251,191,36,0.2);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 20px;
}

.requirements-box h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fbbf24;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Chat */
.chat-container {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
}

.chat-header {
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
}

.chat-header i { color: #38bdf8; }

.chat-messages {
  height: 300px;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-msg {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  animation: fadeInMsg 0.3s;
}

@keyframes fadeInMsg {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-msg.me { flex-direction: row-reverse; }

.chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
}

.chat-bubble {
  max-width: 70%;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
}

.chat-msg.me .chat-bubble {
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
}

.chat-bubble.delivery {
  background: linear-gradient(135deg, rgba(16,185,129,0.2), rgba(5,150,105,0.2));
  border: 1px solid rgba(16,185,129,0.3);
}

.chat-msg.me .chat-bubble.delivery {
  background: linear-gradient(135deg, #10b981, #059669);
}

.delivery-badge {
  font-size: 11px;
  font-weight: 700;
  color: #34d399;
  margin-bottom: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(52,211,153,0.3);
}

.chat-msg.me .delivery-badge {
  color: white;
  border-color: rgba(255,255,255,0.3);
}

.chat-text {
  font-size: 14px;
  color: white;
  line-height: 1.6;
  word-wrap: break-word;
}

.chat-time {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  text-align: left;
  direction: ltr;
}

.chat-msg.me .chat-time { text-align: right; }

.chat-input-area {
  padding: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}

.chat-input-area textarea {
  width: 100%;
  min-height: 60px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: white;
  font-family: "Cairo";
  font-size: 14px;
  outline: none;
  resize: vertical;
  margin-bottom: 10px;
}

.chat-input-area textarea:focus { border-color: #38bdf8; }

.chat-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.btn-send, .btn-deliver, .btn-attach {
  padding: 10px 24px;
  color: white;
  border: none;
  border-radius: 10px;
  font-family: "Cairo";
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

.btn-send { background: linear-gradient(135deg, #0ea5e9, #6366f1); }
.btn-deliver { background: linear-gradient(135deg, #10b981, #059669); }

.btn-attach {
  padding: 10px 16px;
  background: rgba(255,255,255,0.05);
  color: #94a3b8;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 16px;
}

.btn-attach:hover {
  background: rgba(56,189,248,0.1);
  color: #38bdf8;
  border-color: rgba(56,189,248,0.3);
}

.btn-send:hover, .btn-deliver:hover, .btn-attach:hover { transform: translateY(-2px); }

.chat-hint {
  margin-top: 8px;
  font-size: 11px;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 6px;
}

.chat-hint i { color: #38bdf8; }

/* File Attachments */
.chat-file-attachment {
  margin-top: 8px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0,0,0,0.2);
}

.chat-image {
  width: 100%;
  max-width: 300px;
  max-height: 250px;
  object-fit: cover;
  cursor: zoom-in;
  display: block;
}

.chat-video {
  width: 100%;
  max-width: 300px;
  max-height: 250px;
  border-radius: 10px 10px 0 0;
  background: #000;
}

.chat-file-info {
  padding: 10px 12px;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.9);
}

.chat-file-info i { font-size: 16px; color: #38bdf8; }
.chat-file-info span { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight: 600; }
.chat-file-info small { color: rgba(255,255,255,0.6); font-size: 11px; }

.chat-file-box {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(0,0,0,0.25);
  border-radius: 10px;
  min-width: 240px;
}

.chat-msg.me .chat-file-box { background: rgba(255,255,255,0.15); }

.chat-file-icon {
  width: 44px;
  height: 44px;
  background: rgba(56,189,248,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  font-size: 20px;
  flex-shrink: 0;
}

.chat-msg.me .chat-file-icon {
  background: rgba(255,255,255,0.2);
  color: white;
}

.chat-file-details { flex: 1; overflow: hidden; }
.chat-file-details strong { display: block; font-size: 13px; color: white; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; margin-bottom: 2px; }
.chat-file-details small { font-size: 11px; color: rgba(255,255,255,0.6); }

.chat-download-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: 0.3s;
  flex-shrink: 0;
}

.chat-download-btn:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-1px);
}

.order-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-complete {
  flex: 1;
  padding: 14px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: "Cairo";
  font-weight: 800;
  cursor: pointer;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-cancel-order {
  padding: 14px 24px;
  background: rgba(239,68,68,0.1);
  color: #f87171;
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 12px;
  font-family: "Cairo";
  font-weight: 700;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-cancel-order:hover { background: rgba(239,68,68,0.2); }

/* REFERRALS */
.referral-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.ref-stat-card {
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: white;
}

.ref-stat-card.blue { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
.ref-stat-card.gold { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.ref-stat-card.green { background: linear-gradient(135deg, #10b981, #059669); }

.ref-stat-card i { font-size: 32px; opacity: 0.9; }
.ref-stat-label { display: block; font-size: 13px; opacity: 0.9; margin-bottom: 4px; }
.ref-stat-value { display: block; font-size: 26px; font-weight: 900; }

.how-ref-works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}

.how-ref-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.how-ref-num {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  color: white;
  flex-shrink: 0;
}

.how-ref-step strong { display: block; font-size: 15px; margin-bottom: 4px; }
.how-ref-step p { font-size: 13px; color: #94a3b8; line-height: 1.6; }

.referral-link-card {
  background: linear-gradient(135deg, rgba(14,165,233,0.08), rgba(99,102,241,0.08));
  border: 1px solid rgba(14,165,233,0.2);
}

.ref-link-box {
  display: flex;
  gap: 8px;
  margin: 16px 0;
}

.ref-link-box input {
  flex: 1;
  padding: 14px 16px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: #38bdf8;
  font-family: monospace;
  font-size: 14px;
  outline: none;
  direction: ltr;
  cursor: pointer;
}

.ref-link-box button {
  padding: 14px 24px;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: "Cairo";
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ref-code-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,0.2);
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.ref-code-box span { font-size: 13px; color: #94a3b8; }
.ref-code-box strong {
  font-family: monospace;
  font-size: 18px;
  color: #fbbf24;
  letter-spacing: 2px;
  flex: 1;
}

.copy-code-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
}

.share-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.share-btn {
  padding: 12px;
  border: none;
  border-radius: 10px;
  color: white;
  font-family: "Cairo";
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.share-btn.whatsapp { background: #25D366; }
.share-btn.telegram { background: #0088cc; }
.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }

.referred-user-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 12px;
  margin-bottom: 10px;
}

.referred-user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
}

.referred-user-info { flex: 1; }
.referred-user-info strong { display: block; font-size: 14px; margin-bottom: 2px; }
.referred-user-info span { font-size: 12px; color: #64748b; }

.referred-user-stats { text-align: left; font-size: 12px; color: #64748b; }
.referred-user-stats strong { display: block; color: #34d399; font-size: 14px; }

.earning-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.earning-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(251,191,36,0.15);
  color: #fbbf24;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.earning-icon.money { background: rgba(16,185,129,0.15); color: #34d399; }
.earning-details { flex: 1; }
.earning-details strong { display: block; font-size: 14px; margin-bottom: 2px; }
.earning-details span { font-size: 12px; color: #64748b; }
.earning-value { font-weight: 800; color: #fbbf24; font-size: 14px; }
.earning-value.money { color: #34d399; }

/* Notifications */
.notif-dropdown {
  position: absolute;
  top: 60px;
  left: 20px;
  width: 380px;
  max-height: 500px;
  background: #111827;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 999;
  display: none;
  animation: slideDown 0.3s;
}

.notif-dropdown.active { display: flex; flex-direction: column; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.notif-header {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.02);
}

.notif-header h3 {
  font-size: 16px;
  font-weight: 800;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}

.notif-header h3 i { color: #38bdf8; }

.notif-header-actions { display: flex; gap: 6px; }

.notif-header-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #94a3b8;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 11px;
  font-family: "Cairo";
  font-weight: 700;
}

.notif-header-btn.danger:hover { background: rgba(239,68,68,0.15); color: #f87171; }

.notif-list { flex: 1; overflow-y: auto; max-height: 400px; }

.notif-item {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  gap: 12px;
  cursor: pointer;
  transition: 0.2s;
  position: relative;
}

.notif-item:hover { background: rgba(255,255,255,0.04); }

.notif-item.unread {
  background: rgba(56,189,248,0.05);
  border-right: 3px solid #38bdf8;
}

.notif-item.unread::before {
  content: "";
  position: absolute;
  right: 8px;
  top: 20px;
  width: 8px;
  height: 8px;
  background: #38bdf8;
  border-radius: 50%;
}

@keyframes notifPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.notif-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.notif-icon-box.success { background: rgba(16,185,129,0.15); color: #34d399; }
.notif-icon-box.wallet { background: rgba(14,165,233,0.15); color: #38bdf8; }
.notif-icon-box.order { background: rgba(139,92,246,0.15); color: #a78bfa; }
.notif-icon-box.message { background: rgba(251,191,36,0.15); color: #fbbf24; }
.notif-icon-box.task { background: rgba(16,185,129,0.15); color: #34d399; }
.notif-icon-box.referral { background: rgba(236,72,153,0.15); color: #f472b6; }
.notif-icon-box.smm { background: rgba(139,92,246,0.15); color: #a78bfa; }
.notif-icon-box.service { background: rgba(14,165,233,0.15); color: #38bdf8; }
.notif-icon-box.info { background: rgba(148,163,184,0.15); color: #94a3b8; }
.notif-icon-box.admin { background: rgba(239,68,68,0.15); color: #f87171; }

.notif-content { flex: 1; min-width: 0; }
.notif-title { font-size: 13px; font-weight: 700; color: white; margin-bottom: 4px; }
.notif-message { font-size: 12px; color: #94a3b8; line-height: 1.5; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.notif-time { font-size: 11px; color: #475569; margin-top: 4px; }

.notif-empty {
  text-align: center;
  padding: 40px 20px;
  color: #475569;
}

.notif-empty i { font-size: 40px; margin-bottom: 12px; display: block; opacity: 0.5; }
.notif-empty p { font-size: 14px; }

/* Avatar Upload */
.avatar-upload-section {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.avatar-preview-wrapper { position: relative; flex-shrink: 0; }

.avatar-preview {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(56,189,248,0.3);
  background: #1e293b;
}

.avatar-change-btn {
  position: absolute;
  bottom: 4px;
  left: 4px;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  font-size: 15px;
  border: 3px solid #111827;
}

.avatar-info { flex: 1; min-width: 250px; }
.avatar-info h4 { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.avatar-info p { color: #64748b; font-size: 13px; margin-bottom: 16px; line-height: 1.6; }

.avatar-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 992px) {
  .sidebar { right: -260px; }
  .sidebar.active { right: 0; }
  .main-content { margin-right: 0; }
  .sidebar-toggle { display: block; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .dashboard-grid { grid-template-columns: 1fr; }
  .wallet-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: repeat(3, 1fr); }
  .service-type-grid { grid-template-columns: 1fr; }
  .task-stats-bar { grid-template-columns: repeat(2, 1fr); }
  .referral-stats { grid-template-columns: 1fr; }
  .how-ref-works { grid-template-columns: 1fr; }
  .share-buttons { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr; }
  .page { padding: 16px; }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .smm-step span { display: none; }
  .smm-step-arrow { display: none; }
  .avatar-upload-section { flex-direction: column; text-align: center; }
  .avatar-info { text-align: center; }
  .avatar-buttons { justify-content: center; }
}
/* ==================== CONVERSATIONS LIST ==================== */
.conversation-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.conversation-item:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(56,189,248,0.3);
  transform: translateX(-4px);
}

.conv-avatar-wrapper {
  position: relative;
  flex-shrink: 0;
}

.conv-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.1);
  background: #1e293b;
}

.conv-unread {
  position: absolute;
  top: -4px;
  left: -4px;
  background: #ef4444;
  color: white;
  font-size: 11px;
  font-weight: 700;
  min-width: 22px;
  height: 22px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  border: 2px solid #111827;
  animation: notifPulse 2s infinite;
}

.conv-info {
  flex: 1;
  min-width: 0;
}

.conv-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  gap: 8px;
}

.conv-header strong {
  font-size: 15px;
  color: white;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.conv-time {
  font-size: 11px;
  color: #64748b;
  flex-shrink: 0;
}

.conv-service {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 12px;
  color: #94a3b8;
  flex-wrap: wrap;
}

.conv-service span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 200px;
}

.conv-role {
  background: rgba(56,189,248,0.1);
  color: #38bdf8;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
}

.conv-status {
  font-size: 11px;
  font-weight: 700;
  margin-right: auto;
}

.conv-last-message {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.conv-arrow {
  color: #475569;
  font-size: 14px;
  flex-shrink: 0;
  transition: 0.3s;
}

.conversation-item:hover .conv-arrow {
  color: #38bdf8;
  transform: translateX(-3px);
}

@media (max-width: 600px) {
  .conversation-item {
    padding: 12px;
    gap: 10px;
  }
  .conv-avatar {
    width: 44px;
    height: 44px;
  }
  .conv-service span {
    max-width: 120px;
  }
  .conv-status {
    display: none;
  }
}
/* ==================== SEARCH HERO ==================== */
.search-hero {
  position: relative;
  margin-bottom: 20px;
}

.search-hero-wrapper {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(14,165,233,0.08), rgba(99,102,241,0.08));
  border: 2px solid rgba(56,189,248,0.2);
  border-radius: 16px;
  padding: 6px 6px 6px 20px;
  transition: 0.3s;
}

.search-hero-wrapper:focus-within {
  border-color: #38bdf8;
  box-shadow: 0 0 30px rgba(56,189,248,0.15);
}

.search-hero-icon {
  color: #38bdf8;
  font-size: 18px;
  flex-shrink: 0;
}

.search-hero-wrapper input {
  flex: 1;
  padding: 14px 14px;
  background: transparent;
  border: none;
  color: white;
  font-family: "Cairo";
  font-size: 16px;
  outline: none;
}

.search-hero-wrapper input::placeholder {
  color: #64748b;
}

.search-hero-btn {
  padding: 12px 24px;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: "Cairo";
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
  font-size: 15px;
}

.search-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99,102,241,0.3);
}

/* Search Suggestions */
.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #111827;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  margin-top: 6px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 100;
  display: none;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.search-suggestions.active { display: block; }

.suggestion-item {
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 14px;
  color: #cbd5e1;
}

.suggestion-item:last-child { border: none; }

.suggestion-item:hover {
  background: rgba(56,189,248,0.08);
  color: #38bdf8;
}

.suggestion-item i {
  color: #64748b;
  font-size: 12px;
}

.suggestion-category {
  margin-right: auto;
  font-size: 11px;
  color: #64748b;
  background: rgba(255,255,255,0.05);
  padding: 3px 10px;
  border-radius: 6px;
}

/* Quick Filters */
.quick-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  overflow-x: auto;
  padding-bottom: 8px;
}

.quick-filter {
  padding: 10px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: #94a3b8;
  border-radius: 12px;
  font-family: "Cairo";
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.quick-filter:hover {
  background: rgba(56,189,248,0.08);
  color: #38bdf8;
  border-color: rgba(56,189,248,0.2);
}

.quick-filter.active {
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(99,102,241,0.3);
}

/* Advanced Filters */
.advanced-filters {
  margin-bottom: 20px;
}

.advanced-toggle {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  color: white;
  border-radius: 12px;
  font-family: "Cairo";
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  font-size: 14px;
}

.advanced-toggle:hover {
  background: rgba(255,255,255,0.05);
}

.advanced-toggle i:first-child {
  color: #38bdf8;
}

.advanced-toggle span { flex: 1; text-align: right; }

.advanced-toggle i:last-child {
  color: #64748b;
  transition: 0.3s;
}

.advanced-toggle.open i:last-child {
  transform: rotate(180deg);
}

.advanced-filters-panel {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 24px;
  margin-top: 10px;
  animation: slideDown 0.3s;
}

.filter-group {
  margin-bottom: 20px;
}

.filter-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 14px;
  color: #cbd5e1;
}

.filter-group label i {
  color: #38bdf8;
  margin-left: 6px;
}

.filter-group select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  color: white;
  font-family: "Cairo";
  font-size: 14px;
  outline: none;
  cursor: pointer;
}

.filter-group select option {
  background: #1e293b;
}

.price-range-inputs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.price-range-inputs input {
  flex: 1;
  padding: 12px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  color: white;
  font-family: "Cairo";
  font-size: 14px;
  outline: none;
  text-align: center;
}

.price-range-inputs span {
  color: #64748b;
  font-weight: 700;
}

.price-presets {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.price-presets button {
  padding: 6px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #94a3b8;
  border-radius: 8px;
  font-family: "Cairo";
  font-size: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.price-presets button:hover {
  background: rgba(56,189,248,0.1);
  color: #38bdf8;
  border-color: rgba(56,189,248,0.2);
}

.filter-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.filter-actions button {
  flex: 1;
}

/* Active Filters */
.active-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.active-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(56,189,248,0.1);
  border: 1px solid rgba(56,189,248,0.2);
  color: #38bdf8;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.active-filter-chip button {
  background: none;
  border: none;
  color: #38bdf8;
  cursor: pointer;
  padding: 0;
  font-size: 12px;
  display: flex;
  align-items: center;
}

.active-filter-chip button:hover {
  color: #ef4444;
}

/* Pagination */
.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: #94a3b8;
  border-radius: 10px;
  font-family: "Cairo";
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.page-btn:hover:not(:disabled) {
  background: rgba(56,189,248,0.1);
  color: #38bdf8;
  border-color: rgba(56,189,248,0.2);
}

.page-btn.active {
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  color: white;
  border-color: transparent;
}

.page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .search-hero-wrapper {
    padding: 4px;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
  .search-hero-icon {
    display: none;
  }
  .search-hero-wrapper input {
    padding: 12px;
  }
  .search-hero-btn {
    width: 100%;
    justify-content: center;
  }
  .quick-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .price-range-inputs {
    flex-direction: column;
    align-items: stretch;
  }
  .price-range-inputs span {
    display: none;
  }
  .filter-actions {
    flex-direction: column;
  }
}
/* ==================== SUBSCRIPTION PAGE ==================== */
.current-plan-card {
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  border-radius: 24px;
  padding: 32px;
  color: white;
  position: relative;
  overflow: hidden;
}

.current-plan-card.business {
  background: linear-gradient(135deg, #f59e0b, #dc2626);
}

.current-plan-card.free {
  background: linear-gradient(135deg, #64748b, #475569);
}

.current-plan-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1), transparent);
  border-radius: 50%;
}

.plan-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
  gap: 12px;
}

.plan-info h2 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-info p {
  opacity: 0.9;
  font-size: 14px;
}

.plan-status-badge {
  background: rgba(255,255,255,0.2);
  padding: 6px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.plan-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

.plan-detail-item {
  background: rgba(0,0,0,0.2);
  padding: 16px;
  border-radius: 12px;
  text-align: center;
}

.plan-detail-item .label {
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 6px;
  display: block;
}

.plan-detail-item .value {
  font-size: 20px;
  font-weight: 800;
}

/* Plans Grid */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.plan-card-sub {
  background: rgba(255,255,255,0.03);
  border: 2px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 28px;
  transition: 0.3s;
  position: relative;
}

.plan-card-sub:hover {
  transform: translateY(-4px);
  border-color: rgba(56,189,248,0.3);
}

.plan-card-sub.current {
  border-color: #34d399;
  background: rgba(16,185,129,0.05);
}

.plan-card-sub.popular {
  border-color: rgba(14,165,233,0.4);
}

.plan-card-sub.business {
  border-color: rgba(245,158,11,0.4);
  background: rgba(245,158,11,0.03);
}

.plan-current-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #10b981;
  color: white;
  padding: 4px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.plan-icon-sub {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}

.plan-name-sub {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.plan-price-sub {
  text-align: center;
  margin-bottom: 20px;
}

.plan-price-sub .amount {
  font-size: 40px;
  font-weight: 900;
  background: linear-gradient(135deg, #0ea5e9, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.plan-price-sub .period {
  color: #64748b;
  font-size: 13px;
}

.plan-features-sub {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.plan-features-sub li {
  padding: 8px 0;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
}

.plan-features-sub li i {
  color: #34d399;
  font-size: 11px;
}

.plan-btn-sub {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 12px;
  font-family: "Cairo";
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.plan-btn-sub.upgrade {
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  color: white;
}

.plan-btn-sub.business {
  background: linear-gradient(135deg, #f59e0b, #dc2626);
  color: white;
}

.plan-btn-sub.current {
  background: rgba(16,185,129,0.15);
  color: #34d399;
  border: 1px solid rgba(16,185,129,0.3);
  cursor: default;
}

.plan-btn-sub.downgrade {
  background: rgba(148,163,184,0.15);
  color: #94a3b8;
}

.plan-btn-sub:hover:not(.current) {
  transform: translateY(-2px);
}

/* History */
.subscription-history-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 10px;
}

.sub-hist-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sub-hist-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.sub-hist-icon.pro { background: rgba(14,165,233,0.15); color: #38bdf8; }
.sub-hist-icon.business { background: rgba(245,158,11,0.15); color: #fbbf24; }
/* ==================== SUBSCRIPTION TOPBAR BUTTON ==================== */
.subscription-topbar-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #f59e0b, #dc2626);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: "Cairo";
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.subscription-topbar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.subscription-topbar-btn i {
  font-size: 16px;
}

.subscription-topbar-btn.pro {
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.subscription-topbar-btn.pro:hover {
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.subscription-topbar-btn.business {
  background: linear-gradient(135deg, #f59e0b, #dc2626);
}

/* animation shine */
.subscription-topbar-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

@media (max-width: 600px) {
  .subscription-topbar-btn span {
    display: none;
  }
  .subscription-topbar-btn {
    width: 42px;
    height: 42px;
    padding: 0;
    justify-content: center;
  }
}