* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #071426;
  color: #ffffff;
}

header {
  background: linear-gradient(135deg, #071426, #0b1f3a);
  padding: 22px 34px;
  border-bottom: 1px solid rgba(0, 200, 150, 0.3);
}

header h1 {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
}

nav {
  background: #0b1f3a;
  padding: 14px 34px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

nav a {
  margin-right: 22px;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #00c896;
}

main {
  padding: 30px;
  background: #f4f7fa;
  color: #071426;
  min-height: calc(100vh - 140px);
}

.card {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  margin-bottom: 22px;
}

.card h2,
.card h3 {
  margin-top: 0;
  color: #071426;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  margin: 6px 0 16px;
  border: 1px solid #d6dde8;
  border-radius: 10px;
  font-size: 15px;
}

button,
.btn {
  background: #00c896;
  border: none;
  color: #071426;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

button:hover,
.btn:hover {
  opacity: 0.9;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
}

th,
td {
  padding: 12px;
  border-bottom: 1px solid #e1e6ef;
  text-align: left;
  vertical-align: top;
}

th {
  background: #0b1f3a;
  color: #ffffff;
}

.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, #12345f, #071426 55%);
  padding: 24px;
}

.login-card {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  color: #071426;
  padding: 34px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.login-brand {
  text-align: center;
  margin-bottom: 26px;
}

.login-brand img {
  max-width: 120px;
  margin-bottom: 12px;
}

.login-brand h1 {
  margin: 0;
  font-size: 28px;
  color: #071426;
}

.login-brand p {
  margin: 8px 0 0;
  color: #526070;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-user {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}

.logout-btn {
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.2s;
}

.logout-btn:hover {
  background: #00c896;
  color: #071426;
}

.orders-table-card {
  overflow-x: auto;
}

.orders-table {
  min-width: 1600px;
  font-size: 14px;
}

.orders-table th,
.orders-table td {
  padding: 10px;
  vertical-align: top;
}

.order-date {
  min-width: 120px;
  word-break: break-word;
}

.price-cell {
  font-weight: bold;
  white-space: nowrap;
}

.order-inline-form {
  display: contents;
}

.small-input,
.small-select {
  width: 130px;
  padding: 9px 10px;
  margin: 0;
  font-size: 14px;
}

.comment-input {
  width: 190px;
  min-height: 46px;
  padding: 9px 10px;
  margin: 0;
  font-size: 14px;
  resize: vertical;
}

.sima-cell {
  text-align: center;
  white-space: nowrap;
}

.sima-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.sima-label input {
  width: auto;
  margin: 0;
}

.small-save-btn {
  padding: 10px 16px;
  white-space: nowrap;
}

.orders-header-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.secondary-btn {
  background: #ffffff;
  color: #071426;
  border: 1px solid #d6dde8;
}

.orders-summary {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
  color: #071426;
}

.orders-summary span {
  background: #ffffff;
  border-radius: 999px;
  padding: 9px 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.pending-badge {
  background: #fff5d6 !important;
  color: #8a5a00;
}

.reviewed-badge {
  background: #dff7e7 !important;
  color: #116b2f;
}

.orders-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.orders-column {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.pending-column {
  border: 1px solid rgba(255, 180, 0, 0.35);
}

.reviewed-column {
  border: 1px solid rgba(0, 200, 120, 0.25);
}

.orders-column-header {
  padding: 20px 22px;
}

.pending-column .orders-column-header {
  background: linear-gradient(135deg, #fff7df, #ffffff);
}

.reviewed-column .orders-column-header {
  background: linear-gradient(135deg, #e8f9ee, #ffffff);
}

.orders-column-header h2 {
  margin: 0 0 6px;
  color: #071426;
}

.orders-column-header h2 span {
  display: inline-block;
  margin-left: 8px;
  background: #00c896;
  color: #071426;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 14px;
}

.pending-column .orders-column-header h2 span {
  background: #ffc233;
}

.orders-column-header p {
  margin: 0;
  color: #526070;
  font-size: 14px;
}

.compact-orders-table {
  min-width: 920px;
  font-size: 13px;
}

.compact-orders-table th,
.compact-orders-table td {
  padding: 10px;
}

.order-inline-form {
  display: grid;
  gap: 7px;
}

.small-input,
.small-select,
.comment-input {
  width: 100%;
  margin: 0;
}

.comment-input {
  min-height: 42px;
}

.status-pill {
  display: inline-block;
  background: #dff7e7;
  color: #116b2f;
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: bold;
  font-size: 12px;
}

@media (max-width: 1400px) {
  .orders-board {
    grid-template-columns: 1fr;
  }
}

.delete-btn {
  background: #e5484d;
  color: #ffffff;
  border: none;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
}

.delete-btn:hover {
  opacity: 0.9;
}

.deleted-column {
  margin-top: 22px;
  border: 1px solid rgba(229, 72, 77, 0.25);
}

.deleted-column .orders-column-header {
  background: linear-gradient(135deg, #ffecec, #ffffff);
}

.deleted-column .orders-column-header h2 span {
  background: #e5484d;
  color: #ffffff;
}

.deleted-pill {
  display: inline-block;
  background: #ffe1e3;
  color: #9f1d22;
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: bold;
  font-size: 12px;
}

.super-dashboard {
  background: radial-gradient(circle at top left, #12345f, #071426 45%, #050b14);
  color: #ffffff;
  margin: -30px;
  padding: 36px;
  min-height: calc(100vh - 100px);
}

.super-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.super-topbar h1 {
  margin: 0 0 8px;
  font-size: 34px;
}

.super-topbar p {
  margin: 0;
  color: rgba(255,255,255,0.7);
}

.system-status {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 14px 18px;
}

.system-status span {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: #22c55e;
  border-radius: 50%;
  margin-right: 8px;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.kpi-card {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.kpi-card small {
  display: block;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 8px;
}

.kpi-card strong {
  display: block;
  font-size: 30px;
  margin-bottom: 6px;
}

.kpi-card span {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}

.kpi-card.green { box-shadow: inset 4px 0 #22c55e, 0 16px 40px rgba(0,0,0,0.25); }
.kpi-card.blue { box-shadow: inset 4px 0 #2f80ed, 0 16px 40px rgba(0,0,0,0.25); }
.kpi-card.purple { box-shadow: inset 4px 0 #8b5cf6, 0 16px 40px rgba(0,0,0,0.25); }
.kpi-card.red { box-shadow: inset 4px 0 #ef4444, 0 16px 40px rgba(0,0,0,0.25); }
.kpi-card.yellow { box-shadow: inset 4px 0 #fbbf24, 0 16px 40px rgba(0,0,0,0.25); }

.super-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 18px;
}

.super-card {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
}

.super-card.wide {
  grid-column: 1 / -1;
}

.super-card h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 18px;
}

.donut-row {
  display: flex;
  align-items: center;
  gap: 28px;
}

.donut-chart {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  flex: 0 0 auto;
}

.donut-chart::after {
  content: "";
  position: absolute;
  width: 105px;
  height: 105px;
  background: #071426;
  border-radius: 50%;
}

.donut-chart > div {
  position: relative;
  z-index: 1;
  text-align: center;
}

.donut-chart strong {
  display: block;
  font-size: 30px;
}

.donut-chart span {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
}

.calls-donut {
  background: conic-gradient(#22c55e 0 64%, #2f80ed 64% 86%, #fbbf24 86% 100%);
}

.orders-donut {
  background: conic-gradient(#fbbf24 0 25%, #22c55e 25% 85%, #ef4444 85% 100%);
}

.legend p {
  margin: 10px 0;
  color: rgba(255,255,255,0.82);
}

.dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  margin-right: 8px;
}

.green-dot { background: #22c55e; }
.blue-dot { background: #2f80ed; }
.yellow-dot { background: #fbbf24; }
.red-dot { background: #ef4444; }

.money-list div {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.money-list span {
  color: rgba(255,255,255,0.7);
}

.money-list strong {
  color: #ffffff;
}

.error-list p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
  color: rgba(255,255,255,0.8);
}

.info-pill,
.warning-pill {
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: bold;
}

.info-pill {
  background: rgba(34,197,94,0.18);
  color: #22c55e;
}

.warning-pill {
  background: rgba(251,191,36,0.18);
  color: #fbbf24;
}

.dark-table {
  width: 100%;
  border-collapse: collapse;
}

.dark-table th,
.dark-table td {
  padding: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: #ffffff;
}

.dark-table th {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.75);
}

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

  .super-topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .donut-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

.hq-body {
  background: #050b14;
}

.hq-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
  background: #050b14;
}

.hq-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  background: linear-gradient(180deg, #071426, #050b14);
  border-right: 1px solid rgba(255,255,255,0.08);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hq-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
  color: #ffffff;
}

.hq-logo {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #00c896;
  color: #071426;
  font-weight: 900;
  font-size: 22px;
}

.hq-brand strong {
  display: block;
  font-size: 18px;
}

.hq-brand span {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

.hq-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hq-nav a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 700;
}

.hq-nav a:hover {
  background: rgba(0,200,150,0.13);
  color: #00c896;
}

.hq-sidebar-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
}

.hq-user {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  margin-bottom: 12px;
}

.hq-logout {
  display: block;
  text-align: center;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
}

.hq-logout:hover {
  background: #00c896;
  color: #071426;
}

.hq-main {
  padding: 30px;
  color: #ffffff;
  background: radial-gradient(circle at top left, #102849, #050b14 45%, #040812);
  min-width: 0;
}

@media (max-width: 900px) {
  .hq-layout {
    grid-template-columns: 1fr;
  }

  .hq-sidebar {
    position: relative;
    height: auto;
  }
}

.hq-main .card,
.hq-main .orders-column,
.hq-main .orders-table-card {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.09);
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(0,0,0,0.22);
}

.hq-main .card h2,
.hq-main .card h3,
.hq-main .orders-column-header h2 {
  color: #ffffff;
}

.hq-main .card p,
.hq-main .orders-column-header p {
  color: rgba(255,255,255,0.68);
}

.hq-main table {
  background: transparent;
}

.hq-main th {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
}

.hq-main td {
  color: rgba(255,255,255,0.86);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hq-main .orders-column-header {
  background: rgba(255,255,255,0.04);
}

.hq-main .pending-column,
.hq-main .reviewed-column,
.hq-main .deleted-column {
  border-color: rgba(255,255,255,0.09);
}

.hq-main .secondary-btn {
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.12);
}

.expense-bars {
  display: grid;
  gap: 14px;
}

.expense-bar-row {
  display: grid;
  gap: 7px;
}

.expense-bar-label {
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,0.85);
}

.expense-bar-label strong {
  color: #ffffff;
}

.expense-bar-track {
  width: 100%;
  height: 10px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
}

.expense-bar-fill {
  height: 100%;
  background: #ef4444;
  border-radius: 999px;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.quick-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

.quick-action-btn:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}

.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.quick-action-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px;
  border-radius: 20px;
  text-decoration: none;
  color: white;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  transition: 0.25s ease;
  min-height: 90px;
}

.quick-action-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.16);
}

.quick-action-card strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.quick-action-card span {
  opacity: 0.7;
  font-size: 13px;
}

.quick-action-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: rgba(255,255,255,0.08);
}

.quick-action-card.blue {
  box-shadow: 0 0 30px rgba(59,130,246,0.12);
}

.quick-action-card.green {
  box-shadow: 0 0 30px rgba(34,197,94,0.12);
}

.quick-action-card.purple {
  box-shadow: 0 0 30px rgba(168,85,247,0.12);
}

.quick-action-card.yellow {
  box-shadow: 0 0 30px rgba(234,179,8,0.12);
}

.products-table-wrapper {
  margin-top: 20px;
}

.products-toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 20px;
}

.products-search,
.products-filter {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: white;
  border-radius: 12px;
  padding: 12px 14px;
}

.products-table {
  width: 100%;
  border-collapse: collapse;
}

.products-table th {
  text-align: left;
  padding: 16px;
  opacity: 0.7;
  font-size: 14px;
}

.products-table td {
  padding: 18px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.product-cell {
  display: flex;
  align-items: center;
  gap: 14px;
}

.product-cell p {
  margin-top: 4px;
  opacity: 0.65;
  font-size: 13px;
}

.product-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.product-id-badge {
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  font-size: 13px;
}

.status-active {
  background: rgba(34,197,94,0.16);
  color: #4ade80;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.status-inactive {
  background: rgba(148,163,184,0.12);
  color: #cbd5e1;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.premium-badge {
  background: rgba(168,85,247,0.18);
  color: #d8b4fe;
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 600;
}

.freemium-badge {
  background: rgba(59,130,246,0.18);
  color: #93c5fd;
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 600;
}

.product-manage-btn {
  color: #a855f7;
  font-weight: 600;
  text-decoration: none;
}

.product-manage-btn:hover {
  opacity: 0.8;
}

.product-create-form {
  display: grid;
  grid-template-columns: 1fr 1fr 220px auto;
  gap: 18px;
  align-items: end;
}

.product-create-form button {
  height: 46px;
  white-space: nowrap;
}

.product-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.product-stat-card {
  padding: 24px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.product-stat-card span {
  display: block;
  opacity: 0.75;
  margin-bottom: 10px;
}

.product-stat-card strong {
  font-size: 34px;
}

.product-stat-card.green {
  box-shadow: 0 0 30px rgba(34,197,94,0.12);
}

.product-stat-card.blue {
  box-shadow: 0 0 30px rgba(59,130,246,0.12);
}

.product-stat-card.purple {
  box-shadow: 0 0 30px rgba(168,85,247,0.12);
}

.product-stat-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.product-stat-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: rgba(255,255,255,0.08);
}

.product-stat-card span {
  display: block;
  opacity: 0.75;
  margin-bottom: 8px;
}

.product-stat-card strong {
  font-size: 34px;
  line-height: 1;
}

.client-create-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: end;
}

.client-create-form button {
  height: 46px;
  white-space: nowrap;
}

.customer-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin: 22px 0;
}

.customer-stat-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.customer-stat-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.customer-stat-card span {
  display: block;
  opacity: 0.72;
  margin-bottom: 8px;
}

.customer-stat-card strong {
  font-size: 34px;
  line-height: 1;
}

.customer-stat-card.green {
  box-shadow: 0 0 30px rgba(34,230,185,0.12);
}

.customer-stat-card.blue {
  box-shadow: 0 0 30px rgba(59,130,246,0.12);
}

.customer-stat-card.purple {
  box-shadow: 0 0 30px rgba(139,92,246,0.12);
}

.customer-stat-card.yellow {
  box-shadow: 0 0 30px rgba(234,179,8,0.12);
}

.customers-workspace {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: start;
}

.customers-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.customers-sidebar {
  position: sticky;
  top: 20px;
}

.action-sidebar-card {
  padding: 22px;
}

.action-sidebar-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}

.section-header {
  margin-bottom: 18px;
}

.section-header p {
  opacity: 0.7;
  margin-top: 6px;
}

.empty-state {
  padding: 40px 20px;
  text-align: center;
  opacity: 0.6;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(34,230,185,0.18),
    rgba(139,92,246,0.18)
  );

  border: 1px solid rgba(34,230,185,0.28);

  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.22s ease;
  cursor: pointer;

  box-shadow:
    0 0 30px rgba(34,230,185,0.10);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 40px rgba(34,230,185,0.18);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 18px;
  border-radius: 14px;

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

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

  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.22s ease;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.07);
}

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

  padding: 12px 18px;
  border-radius: 14px;

  background: rgba(239,68,68,0.10);

  border: 1px solid rgba(239,68,68,0.22);

  color: #fca5a5;
  text-decoration: none;
  font-weight: 600;
  transition: 0.22s ease;
}

.btn-danger:hover {
  transform: translateY(-2px);
  background: rgba(239,68,68,0.16);
}

.products-table tbody tr {
  transition: 0.22s ease;
}

.products-table tbody tr:hover {
  background: rgba(255,255,255,0.025);
}

.products-table td strong {
  color: #f8fafc;
}

.products-table td {
  vertical-align: middle;
}

.ops-event-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ops-event {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  transition: 0.22s ease;
}

.ops-event:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.055);
}

.ops-event-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.ops-event p {
  margin-top: 4px;
  opacity: 0.68;
}
