:root {
  --kc-bg: #050505;
  --kc-panel: #101010;
  --kc-panel-2: #141414;
  --kc-panel-3: #161616;
  --kc-border: #242424;
  --kc-border-soft: #1a1a1a;
  --kc-border-strong: #2a2a2a;
  --kc-text: #ffffff;
  --kc-muted: #888888;
  --kc-muted-2: #999999;
  --kc-gold: #ffcc00;
  --kc-gold-2: #f0a500;
  --kc-gold-soft: rgba(255, 204, 0, 0.16);
  --kc-radius-lg: 24px;
  --kc-radius-md: 16px;
  --kc-radius-sm: 14px;
  --kc-shadow: 0 10px 30px rgba(0,0,0,0.38), inset 0 1px 0 rgba(255,255,255,0.03);
}

* { box-sizing: border-box; }

.dashboard-body {
  min-height: 100vh;
  margin: 0;
  background: #050505;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
}

.hidden { display: none !important; }

.seller-dashboard {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
}

.dashboard-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 22px 16px;
  background: #050505;
  border-right: 1px solid #1a1a1a;
  overflow-y: auto;
}

.dashboard-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
  padding: 0 0 30px;
}

.dashboard-brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff27a, #f0a500);
  color: black;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(255,204,0,0.16);
}

.dashboard-brand-title {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.5px;
}

.dashboard-brand-subtitle {
  color: #999;
  font-size: 13px;
  margin-top: 4px;
}

.dashboard-eyebrow,
.dashboard-nav-kicker {
  color: #8f8f8f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.dashboard-nav-section {
  margin-bottom: 16px;
}

.dashboard-nav-header,
.dashboard-subnav-btn,
.dashboard-logout-btn,
.dashboard-refresh-btn,
.dashboard-back-link,
.dashboard-login-form button {
  border-radius: 14px;
  border: 1px solid #262626;
  background: #151515;
  color: white;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 4px 18px rgba(0,0,0,0.25);
  transition: 0.18s ease;
}

.dashboard-nav-header {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.dashboard-nav-header:hover,
.dashboard-subnav-btn:hover,
.dashboard-back-link:hover,
.dashboard-refresh-btn:hover,
.dashboard-logout-btn:hover {
  border-color: #333;
  background: #181818;
}

.dashboard-nav-header.active {
  background: linear-gradient(180deg, #fff27a, #f0a500);
  color: black;
  border-color: transparent;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.42), 0 4px 14px rgba(0,0,0,0.35);
}

.dashboard-nav-header.locked {
  opacity: 0.42;
  cursor: not-allowed;
}

.dashboard-nav-count,
.dashboard-subnav-count {
  min-width: 28px;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
}

.dashboard-nav-header.active .dashboard-nav-count {
  background: rgba(0,0,0,0.14);
  color: black;
}

.dashboard-subnav {
  display: none;
  flex-direction: column;
  gap: 4px;
  margin: 7px 0 10px 7px;
  padding: 6px;
  border-left: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.015);
  border-radius: 12px;
}

.dashboard-subnav-btn {
  width: 100%;
  min-height: 40px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  color: #d8d8d8;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.dashboard-subnav-btn.active {
  border-color: #ffd21f;
  background: linear-gradient(180deg, rgba(255,210,31,0.09), rgba(255,210,31,0.03));
  box-shadow: 0 0 0 1px rgba(255,210,31,0.15) inset, 0 0 30px rgba(255,210,31,0.08);
  color: white;
}

.dashboard-coming-soon {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}

.dashboard-nav-kicker {
  padding: 0 10px;
  margin-bottom: 2px;
}

.dashboard-main {
  min-width: 0;
}

.dashboard-topbar {
  min-height: 82px;
  border-bottom: 1px solid #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 32px;
  position: sticky;
  top: 0;
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.dashboard-topbar h1 {
  margin: 4px 0 0;
  font-size: 42px;
  line-height: 1;
  max-width: 980px;
  letter-spacing: -1.4px;
  font-weight: 900;
}

.dashboard-account {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: right;
}

.dashboard-account-name {
  font-weight: 900;
  font-size: 14px;
}

.dashboard-account-id {
  color: #999;
  font-size: 12px;
  margin-top: 3px;
}

.dashboard-logout-btn,
.dashboard-refresh-btn,
.dashboard-login-form button {
  min-height: 44px;
  padding: 0 20px;
  font-weight: 900;
  cursor: pointer;
}

.dashboard-content {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 42px;
}

.dashboard-toolbar {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.dashboard-search-wrap {
  flex: 1;
  min-width: 0;
}

.dashboard-search-wrap input,
.dashboard-login-form input {
  width: 100%;
  height: 50px;
  border-radius: 14px;
  border: 1px solid #2a2a2a;
  background: #141414;
  color: white;
  padding: 0 16px;
  outline: none;
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 4px 18px rgba(0,0,0,0.28);
}

.dashboard-search-wrap input::placeholder,
.dashboard-login-form input::placeholder {
  color: #777;
}

.dashboard-search-wrap input:focus,
.dashboard-login-form input:focus {
  border-color: #ffd21f;
  box-shadow: 0 0 0 1px rgba(255,210,31,0.15) inset, 0 0 30px rgba(255,210,31,0.08);
}

.dashboard-back-link {
  height: 50px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: black;
  text-decoration: none;
  font-weight: 900;
  background: linear-gradient(180deg, #f2f2f2, #cfcfcf);
  border-color: #3a3a3a;
  white-space: nowrap;
}

.dashboard-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}

.dashboard-stat-card,
.dashboard-table-card,
.dashboard-login-card {
  background: linear-gradient(180deg, #161616, #101010);
  border: 1px solid #2a2a2a;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.38), inset 0 1px 0 rgba(255,255,255,0.03);
}

.dashboard-stat-card {
  min-height: 100px;
  padding: 18px;
}

.dashboard-stat-card.active {
  border-color: #ffd21f;
  background: linear-gradient(180deg, rgba(255,210,31,0.09), rgba(16,16,16,1));
  box-shadow: 0 10px 30px rgba(0,0,0,0.38), 0 0 0 1px rgba(255,210,31,0.15) inset, 0 0 30px rgba(255,210,31,0.08);
}

.dashboard-stat-label {
  color: #999;
  font-size: 13px;
  font-weight: 900;
}

.dashboard-stat-value {
  margin-top: 14px;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.8px;
}

.dashboard-table-card {
  overflow: hidden;
}

.dashboard-table-header {
  padding: 24px;
  border-bottom: 1px solid #242424;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.dashboard-table-header h2 {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.dashboard-table-header p {
  margin: 0;
  color: #888;
  line-height: 1.45;
}

.dashboard-refresh-btn {
  background: #151515;
  color: white;
}

.dashboard-table-wrap {
  overflow-x: auto;
}

.dashboard-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  background: #101010;
}

.dashboard-table th,
.dashboard-table td {
  padding: 18px;
  border-bottom: 1px solid #242424;
  text-align: left;
}

.dashboard-table th {
  color: rgba(255,255,255,0.46);
  font-size: 12.5px;
  font-weight: 900;
  text-transform: uppercase;
  background: #151515;
}

.dashboard-table td {
  color: rgba(255,255,255,0.86);
  font-size: 15px;
  font-weight: 700;
}

.dashboard-empty-state {
  min-height: 280px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 80px;
  color: #888;
  text-align: center;
  background: #141414;
}

.dashboard-empty-state strong {
  color: white;
}

.dashboard-empty-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #ffcc00;
  font-size: 28px;
  line-height: 1;
  background: rgba(255,204,0,0.10);
}

.dashboard-login-panel {
  min-height: calc(100vh - 82px);
  display: grid;
  place-items: center;
  padding: 42px;
}

.dashboard-login-card {
  width: min(560px, calc(100vw - 40px));
  padding: 30px;
  background: linear-gradient(180deg, rgba(22,22,24,0.96), rgba(8,8,10,0.97));
}

.dashboard-login-card h2 {
  margin: 10px 0 12px;
  font-size: 44px;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -1.4px;
}

.dashboard-login-card p {
  margin: 0 0 26px;
  color: rgba(255,255,255,0.68);
  font-size: 15px;
  line-height: 1.45;
}

.dashboard-login-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dashboard-login-form label {
  color: #aaa;
  font-size: 13px;
  font-weight: 700;
}

.dashboard-login-form button {
  width: 100%;
  height: 62px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(180deg, #58d86a, #2ca43c);
  color: white;
  font-size: 20px;
  box-shadow: 0 10px 24px rgba(60,255,110,0.18), inset 0 1px 0 rgba(255,255,255,0.10);
  margin-top: 8px;
}

.dashboard-login-form button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.dashboard-form-error {
  min-height: 20px;
  color: #ff7b7b;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .seller-dashboard {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    position: relative;
    height: auto;
    border-right: none;
    border-bottom: 1px solid #1a1a1a;
  }

  .dashboard-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .dashboard-topbar {
    flex-direction: column;
    height: auto;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
  }

  .dashboard-account {
    width: 100%;
    justify-content: space-between;
    text-align: left;
  }

  .dashboard-content {
    padding: 22px;
  }

  .dashboard-topbar h1 {
    font-size: 34px;
  }

  .dashboard-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 620px) {
  .dashboard-stat-grid {
    grid-template-columns: 1fr;
  }
}

/* Sidebar refinement: StockX/client-portal structure in Kickz Caviar styling */
.dashboard-nav-section {
  margin-bottom: 8px;
}

.dashboard-nav-header {
  min-height: 50px;
  padding: 0 14px;
  border-radius: 14px;

  background: linear-gradient(180deg, #171717, #101010);

  border: 1px solid rgba(255, 204, 0, 0.22);

  color: #ffcc00;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 4px 18px rgba(0,0,0,0.25);

  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.dashboard-nav-header:hover,
.dashboard-nav-header.open,
.dashboard-nav-header.active {
  background: linear-gradient(180deg, #1b1b1b, #121212);

  border-color: rgba(255, 204, 0, 0.32);

  color: #ffcc00;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 0 0 1px rgba(255,204,0,0.04),
    0 4px 18px rgba(0,0,0,0.25);
}

.dashboard-nav-right {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.dashboard-nav-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  color: rgba(255,255,255,0.78);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.18s ease;
}

.dashboard-nav-header.open .dashboard-nav-arrow {
  transform: rotate(90deg);
}

.dashboard-nav-count,
.dashboard-nav-header.active .dashboard-nav-count {
  min-width: 24px;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;

  background: rgba(255,255,255,0.08);

  color: rgba(255,255,255,0.78);

  font-size: 12px;
  font-weight: 900;
}

.dashboard-subnav-count {
  min-width: 24px;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  font-weight: 900;
}

.dashboard-subnav.open {
  display: flex;
}

.dashboard-subnav-btn {
  position: relative;
  min-height: 42px;
  padding: 0 12px 0 14px;
  border: none;
  border-left: 3px solid transparent;
  border-radius: 12px;
  background: transparent;
  box-shadow: none;
  color: #999999;
  font-size: 13px;
  font-weight: 800;
}

.dashboard-subnav-btn:hover,
.dashboard-subnav-btn.active {
  border-left-color: #ffcc00;
  background: linear-gradient(
    90deg,
    rgba(255,204,0,0.18),
    rgba(255,204,0,0.055)
  );
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255,204,0,0.06);
}

.dashboard-subnav-btn.active .dashboard-subnav-count {
  background: rgba(255,255,255,0.16);
  color: #ffffff;
}

.dashboard-discord-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 36px;
  padding: 0 14px;

  border-radius: 12px;

  background: linear-gradient(180deg, #5865F2, #404EED);

  color: #ffffff;
  text-decoration: none;

  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.4px;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.16),
    0 6px 16px rgba(64,78,237,0.24);
}

.dashboard-table-wrap {
  overflow-x: auto;
}

.dashboard-table {
  min-width: 1280px;
}

.dashboard-table th,
.dashboard-table td {
  white-space: nowrap;
}

.dashboard-table th:nth-child(2),
.dashboard-table td:nth-child(2) {
  min-width: 320px;
  white-space: normal;
}

.dashboard-table th:nth-child(3),
.dashboard-table td:nth-child(3) {
  min-width: 150px;
}

.dashboard-table th:nth-child(5),
.dashboard-table td:nth-child(5) {
  min-width: 160px;
}

.dashboard-table th:nth-child(9),
.dashboard-table td:nth-child(9) {
  min-width: 130px;
  text-align: center;
}

.dashboard-status-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  margin: 0 auto;
}

.dashboard-status-dot-lowest {
  background: #67ff8b;

  box-shadow:
    0 0 10px rgba(103,255,139,0.9),
    0 0 20px rgba(103,255,139,0.45),
    0 0 34px rgba(103,255,139,0.22);
}

.dashboard-status-dot-beaten {
  background: #ff6767;

  box-shadow:
    0 0 10px rgba(255,103,103,0.9),
    0 0 20px rgba(255,103,103,0.45),
    0 0 34px rgba(255,103,103,0.22);
}

.dashboard-action-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dashboard-edit-btn,
.dashboard-delete-btn {
  height: 38px;
  min-width: 48px;

  border: none;
  border-radius: 12px;
  padding: 0 14px;

  font-size: 12px;
  font-weight: 900;

  cursor: pointer;
  opacity: 1;
}

.dashboard-edit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  
  background: #f3f3f3;
  color: #050505;

  border: 1px solid rgba(255,255,255,0.12);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.55),
    0 4px 14px rgba(0,0,0,0.22);

  font-weight: 900;
}

.dashboard-delete-btn {
  width: 48px;
  height: 38px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  background: linear-gradient(
    180deg,
    rgba(255, 87, 87, 0.26),
    rgba(140, 20, 20, 0.26)
  );

  color: #ffffff;

  border: 1px solid rgba(255, 120, 120, 0.22);
  border-radius: 14px;

  cursor: pointer;

  box-shadow:
    0 0 24px rgba(255,87,87,0.10),
    inset 0 1px 0 rgba(255,255,255,0.08);

  transition:
    transform 0.16s ease,
    background 0.16s ease,
    box-shadow 0.16s ease;
}

.dashboard-delete-btn:hover {
  transform: translateY(-1px);

  background: linear-gradient(
    180deg,
    rgba(255, 96, 96, 0.34),
    rgba(160, 22, 22, 0.34)
  );

  box-shadow:
    0 0 30px rgba(255,87,87,0.18),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.dashboard-delete-btn svg {
  width: 18px;
  height: 18px;

  stroke: #ffffff;
}

.dashboard-table.open-offers-table {
  table-layout: fixed !important;
  width: 100%;
  min-width: 1500px !important;
}

.dashboard-table.open-offers-table th:nth-child(1),
.dashboard-table.open-offers-table td:nth-child(1) {
  width: 44px;
}

.dashboard-table.open-offers-table th:nth-child(2),
.dashboard-table.open-offers-table td:nth-child(2) {
  width: 150px;
  min-width: 150px;
  white-space: normal;
}

.dashboard-table.open-offers-table th:nth-child(3),
.dashboard-table.open-offers-table td:nth-child(3) {
  width: 460px;
  min-width: 460px;
  white-space: normal;
}

.dashboard-table.open-offers-table th:nth-child(4),
.dashboard-table.open-offers-table td:nth-child(4) {
  width: 140px;
}

.dashboard-table.open-offers-table th:nth-child(5),
.dashboard-table.open-offers-table td:nth-child(5) {
  width: 80px;
}

.dashboard-table.open-offers-table th:nth-child(6),
.dashboard-table.open-offers-table td:nth-child(6) {
  width: 140px;
}

.dashboard-table.open-offers-table th:nth-child(7),
.dashboard-table.open-offers-table td:nth-child(7) {
  width: 120px;
}

.dashboard-table.open-offers-table th:nth-child(8),
.dashboard-table.open-offers-table td:nth-child(8) {
  width: 110px;
}

.dashboard-table.open-offers-table th:nth-child(9),
.dashboard-table.open-offers-table td:nth-child(9) {
  width: 150px;
}

.dashboard-table.open-offers-table th:nth-child(10),
.dashboard-table.open-offers-table td:nth-child(10) {
  width: 120px;
}

.dashboard-table.open-offers-table th:nth-child(11),
.dashboard-table.open-offers-table td:nth-child(11) {
  width: 140px;
}

.dashboard-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: grid;
  place-items: center;

  padding: 24px;
}

.dashboard-modal-backdrop {
  position: absolute;
  inset: 0;

  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(10px);
}

.dashboard-modal-card {
  position: relative;
  z-index: 1;

  width: min(560px, 100%);
  padding: 34px;

  border-radius: 26px;
  border: 1px solid #2a2a2a;

  background:
    radial-gradient(circle at top left, rgba(255,204,0,0.035), transparent 42%),
    linear-gradient(180deg, #181818, #101010);

  box-shadow:
    0 30px 90px rgba(0,0,0,0.62),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.dashboard-modal-card h2 {
  margin: 0;
  font-size: 44px;
  line-height: 0.95;
  letter-spacing: -1.4px;
  font-weight: 900;
}

.dashboard-modal-card p {
  margin: 14px 0 28px;
  color: rgba(255,255,255,0.66);
  line-height: 1.45;
}

.dashboard-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;

  width: 44px;
  height: 44px;

  border-radius: 999px;
  border: 1px solid #333;

  background: #1b1b1b;
  color: white;

  font-size: 26px;
  line-height: 1;

  cursor: pointer;
}

.dashboard-modal-form {
  display: grid;
  gap: 18px;
}

.dashboard-modal-form label {
  display: grid;
  gap: 10px;

  color: #aaa;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dashboard-modal-form input {
  height: 54px;

  border-radius: 14px;
  border: 1px solid #2b2b2b;

  background: #111;
  color: white;

  padding: 0 16px;

  font-size: 18px;
  font-weight: 900;

  outline: none;
}

.dashboard-modal-form input:focus {
  border-color: #ffcc00;
  box-shadow:
    0 0 0 1px rgba(255,204,0,0.18) inset,
    0 0 32px rgba(255,204,0,0.08);
}

.dashboard-locked-vat {
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 58px;
  padding: 0 16px;

  border-radius: 16px;
  border: 1px solid #2b2b2b;

  background: rgba(255,255,255,0.025);
}

.dashboard-locked-vat span {
  color: #aaa;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dashboard-locked-vat strong {
  color: #ffcc00;
  font-size: 15px;
  font-weight: 900;
}

.dashboard-modal-form button[type="submit"] {
  height: 58px;

  border: none;
  border-radius: 16px;

  background: linear-gradient(180deg, #49d862, #29a93d);
  color: white;

  font-size: 17px;
  font-weight: 900;

  cursor: pointer;

  box-shadow:
    0 14px 32px rgba(73,216,98,0.18),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.dashboard-modal-form button[type="submit"]:disabled {
  opacity: 0.65;
  cursor: wait;
}

.dashboard-download-btn {
  width: 48px;
  height: 38px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;
  border: none;

  background: #f7c843;
  color: #050505;

  text-decoration: none;

  font-size: 18px;
  font-weight: 900;
  line-height: 1;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    0 6px 16px rgba(247, 200, 67, 0.22);

  transition:
    transform 0.15s ease,
    filter 0.15s ease;
}

.dashboard-download-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.dashboard-track-btn {
  height: 38px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 16px;

  border-radius: 12px;
  border: none;

  background: linear-gradient(180deg, #f3f3f3, #d6d6d6);
  color: #050505;

  font-size: 12px;
  font-weight: 900;
  text-decoration: none;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.55),
    0 4px 14px rgba(0,0,0,0.22);
}

.dashboard-issue-btn,
.dashboard-view-btn,
.dashboard-solve-btn {
  height: 38px;
  border: none;
  border-radius: 12px;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.dashboard-issue-btn {
  height: 38px;

  border: none;
  border-radius: 12px;

  padding: 0 16px;

  background: linear-gradient(180deg, #fff27a, #f0a500);
  color: black;

  font-size: 12px;
  font-weight: 900;

  cursor: pointer;

  box-shadow:
    0 8px 18px rgba(255,204,0,0.16),
    inset 0 1px 0 rgba(255,255,255,0.22);
}

.dashboard-issue-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.dashboard-view-btn {
  height: 38px;

  border: none;
  border-radius: 12px;

  padding: 0 16px;

  background: linear-gradient(180deg, #f4f4f4, #d9d9d9);
  color: black;

  font-size: 12px;
  font-weight: 900;

  cursor: pointer;

  box-shadow:
    0 6px 14px rgba(255,255,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.75);

  transition: 0.18s ease;
}

.dashboard-view-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.dashboard-solve-btn {
  background: #16b364;
  color: #fff;
}

.dashboard-modal-textarea {
  width: 100%;
  min-height: 150px;
  resize: vertical;

  border-radius: 14px;
  border: 1px solid #2a2a2a;

  background: #141414;
  color: white;

  padding: 14px 16px;
  outline: none;

  font: inherit;
  font-size: 14px;
  line-height: 1.45;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 4px 18px rgba(0,0,0,0.28);
}

.dashboard-modal-textarea:focus {
  border-color: #ffd21f;
  box-shadow:
    0 0 0 1px rgba(255,210,31,0.15) inset,
    0 0 30px rgba(255,210,31,0.08);
}

.dashboard-issue-note-box {
  margin-top: 18px;

  max-height: 340px;
  overflow-y: auto;

  white-space: pre-wrap;
  word-break: break-word;

  border-radius: 16px;
  border: 1px solid #2a2a2a;

  background: #141414;
  color: rgba(255,255,255,0.88);

  padding: 18px;

  font-size: 14px;
  line-height: 1.55;
}

.dashboard-solve-btn {
  height: 38px;

  border: none;
  border-radius: 12px;

  padding: 0 16px;

  background: linear-gradient(180deg, #58d86a, #2ca43c);
  color: white;

  font-size: 12px;
  font-weight: 900;

  cursor: pointer;

  box-shadow:
    0 8px 18px rgba(60,255,110,0.16),
    inset 0 1px 0 rgba(255,255,255,0.14);
}

.dashboard-solve-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.dashboard-issue-submit-btn {
  width: 100%;
  height: 56px;

  margin-top: 18px;

  border: none;
  border-radius: 18px;

  background: linear-gradient(180deg, #58d86a, #2ca43c);
  color: white;

  font-size: 18px;
  font-weight: 900;

  cursor: pointer;

  box-shadow:
    0 10px 24px rgba(60,255,110,0.18),
    inset 0 1px 0 rgba(255,255,255,0.10);

  transition: 0.18s ease;
}

.dashboard-issue-submit-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.dashboard-issue-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.dashboard-coming-soon-main {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 54px;

  padding: 0 18px;

  border-radius: 18px;
  border: 1px solid rgba(255, 210, 31, 0.18);

  background:
    linear-gradient(
      90deg,
      rgba(255,210,31,0.10),
      rgba(255,210,31,0.03)
    );

  color: #ffd21f;

  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  opacity: 0.72;
  cursor: not-allowed;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 10px 24px rgba(0,0,0,0.22);
}

.dashboard-coming-soon-main:hover {
  transform: none;
}

.dashboard-coming-soon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 74px;
  height: 28px;

  padding: 0 12px;

  border-radius: 999px;

  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.88);

  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;

  border: 1px solid rgba(255,255,255,0.06);
}

.dashboard-coming-soon .dashboard-coming-soon-main {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-radius: 14px;
  border: 1px solid rgba(255, 204, 0, 0.22);

  background: linear-gradient(180deg, #171717, #101010);
  color: #ffcc00;

  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2px;

  opacity: 0.7;
  cursor: not-allowed;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 4px 18px rgba(0,0,0,0.25);
}

.dashboard-coming-soon-badge {
  min-width: 70px;
  height: 24px;
  padding: 0 10px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.78);

  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.dashboard-secondary-auth-btn,
.dashboard-signup-btn {
  width: 100%;
  min-height: 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 16px;

  font-size: 13px;
  font-weight: 900;
  text-decoration: none;

  cursor: pointer;
}

.dashboard-secondary-auth-btn {
  border: 1px solid rgba(255,204,0,0.24);
  background: rgba(255,204,0,0.06);
  color: #ffcc00;
}

.dashboard-signup-btn {
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(180deg, #f2f2f2, #cfcfcf);
  color: #050505;
}

.dashboard-secondary-auth-btn:hover,
.dashboard-signup-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.header-auth {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.signup-btn,
.login-btn,
.profile-btn {
  height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  font-size: 13px;
  font-weight: 900;
  text-decoration: none;

  cursor: pointer;
  transition: 0.18s ease;
}

.signup-btn {
  padding: 0 18px;

  border: 1px solid rgba(255,255,255,0.16);
  background: linear-gradient(180deg, #f2f2f2, #cfcfcf);
  color: #050505;
}

.login-btn {
  padding: 0 20px;

  border: none;
  background: linear-gradient(180deg, #fff27a, #f0a500);
  color: #050505;

  box-shadow:
    0 8px 20px rgba(255,204,0,0.16),
    inset 0 1px 0 rgba(255,255,255,0.32);
}

.profile-btn {
  width: 46px;

  border: 1px solid rgba(255,255,255,0.16);
  background: linear-gradient(180deg, #f2f2f2, #cfcfcf);
  color: #050505;
}

.signup-btn:hover,
.login-btn:hover,
.profile-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.seller-dashboard.auth-only {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-template-columns: none;
  background: #050505;
}

.seller-dashboard.auth-only .dashboard-main {
  width: 100vw;
  min-width: 0;
}

.seller-dashboard.auth-only .dashboard-login-panel {
  min-height: 100vh;
  width: 100vw;
  padding: 24px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.seller-dashboard.auth-only .dashboard-login-card {
  width: min(560px, calc(100vw - 40px));
  padding: 30px 30px 24px;

  background: linear-gradient(180deg, rgba(22,22,24,0.96), rgba(8,8,10,0.97));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;

  box-shadow:
    0 20px 46px rgba(0,0,0,0.56),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.seller-dashboard.auth-only .dashboard-eyebrow,
.seller-dashboard.auth-only .dashboard-login-card p {
  display: none;
}

.seller-dashboard.auth-only .dashboard-login-card h2 {
  margin: 0 0 28px;
  font-size: 44px;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -1.4px;
}

.seller-dashboard.auth-only .dashboard-login-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.seller-dashboard.auth-only .dashboard-login-form label {
  color: #aaa;
  font-size: 13px;
  font-weight: 700;

  display: flex;
  flex-direction: column;
  gap: 8px;
}

.seller-dashboard.auth-only .dashboard-login-form input {
  height: 50px;
  border-radius: 14px;
  border: 1px solid #2a2a2a;
  background: #111;
  color: white;
  padding: 0 14px;
  outline: none;
}

.seller-dashboard.auth-only .dashboard-login-form input:focus {
  border-color: #ffd21f;
  box-shadow:
    0 0 0 1px rgba(255,210,31,0.15) inset,
    0 0 30px rgba(255,210,31,0.08);
}

.seller-dashboard.auth-only .login-submit-btn,
.seller-dashboard.auth-only .dashboard-login-form button[type="submit"] {
  width: 100%;
  height: 62px;

  border: none;
  border-radius: 18px;

  background: linear-gradient(180deg, #fff27a, #f0a500);
  color: #050505;

  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.02em;

  margin-top: 18px;

  box-shadow:
    0 10px 24px rgba(255,204,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.seller-dashboard.auth-only .dashboard-secondary-auth-btn {
  margin-top: 4px;
  padding: 0;

  width: auto;
  height: auto;
  min-height: auto;

  border: none;
  background: transparent;
  box-shadow: none;

  color: rgba(255,255,255,0.86);

  font-size: 13px;
  font-weight: 800;

  text-align: left;
  justify-content: flex-start;
}

.seller-dashboard.auth-only .dashboard-secondary-auth-btn:hover {
  color: white;
  text-decoration: underline;
  transform: none;
  filter: none;
}

.seller-dashboard.auth-only .dashboard-signup-btn {
  width: 100%;
  height: 56px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.14);

  background: linear-gradient(180deg, #f2f2f2, #cfcfcf);
  color: #050505;

  font-size: 15px;
  font-weight: 900;
  text-decoration: none;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.55),
    0 4px 14px rgba(0,0,0,0.35);
}
