.dokan-image-size-hint {
    text-align: center;
    opacity: 0.8;
}


/* ===============================
   BASE LAYOUT
================================ */

#admin-app {
  display: flex;
  min-height: 100vh;
  background: #f4f6f9;
  font-family: Arial, sans-serif;
}

/* ===============================
   SIDEBAR
================================ */

.sidebar {
  width: 240px;
  background: #111827;
  color: #ffffff;
  padding: 20px;
}

.sidebar h2 {
  margin-bottom: 20px;
  font-size: 20px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar li {
  padding: 12px 10px;
  cursor: pointer;
  border-radius: 6px;
}

.sidebar li:hover {
  background: #1f2937;
}

.sidebar li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}


/* ===============================
   DASHBOARD CARD FIX (2 LINE ONLY)
================================ */

.dashboard-card strong {
  display: block;
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 8px;
  font-weight: 600;
}

/* VALUE LINE */
.dashboard-card span {
  display: inline-block;   /* 🔥 block না */
  font-size: 24px;         /* আগের থেকে একটু ছোট */
  font-weight: 800;
  color: #111827;
}

/* WooCommerce price fix ($ + amount same line) */
.dashboard-card .woocommerce-Price-currencySymbol,
.dashboard-card .woocommerce-Price-amount {
  display: inline;
  font-size: inherit;
  font-weight: inherit;
}


/* ===============================
   MAIN CONTENT
================================ */

#admin-content {
  flex: 1;
  padding: 30px;
}

/* ===============================
   OVERVIEW CARDS
================================ */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
  cursor: pointer;
  transition: box-shadow .2s ease;
}

.card:hover {
  box-shadow: 0 10px 26px rgba(0,0,0,.12);
}

/* ===============================
   ADMIN TABLE
================================ */

.admin-table {
  width: 100%;
  background: #ffffff;
  border-radius: 12px;
  border-collapse: collapse;
  margin-top: 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
  overflow: hidden;
}

.admin-table th,
.admin-table td {
  padding: 14px;
  border-bottom: 1px solid #e5e7eb;
}

.admin-table th {
  background: #f9fafb;
  font-weight: 600;
  text-align: left;
}

.admin-table td:last-child {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

/* ===============================
   STATUS TEXT
================================ */

.approved {
  color: #16a34a;
  font-weight: 700;
}

.pending {
  color: #f59e0b;
  font-weight: 700;
}

/* ===============================
   ACTION BUTTONS
================================ */

.seller-action,
.product-action {
  padding: 6px 14px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  transition: background .2s ease;
}

/* Approve = GREEN */
.approve {
  background: #16a34a;
}
.approve:hover {
  background: #15803d;
}

/* Reject = RED */
.reject {
  background: #dc2626;
}
.reject:hover {
  background: #b91c1c;
}

/* ===============================
   VIEW BUTTON (OLD STYLE)
================================ */

.btn-view-seller,
.btn-view-product {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  background: #9ca3af;
  color: #000;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .2s ease;
}

.btn-view-seller:hover,
.btn-view-product:hover {
  background: #000;
  color: #fff;
}
.dokan-image-size-hint {
    margin-top: 8px;
    font-size: 13px;
    color: #666;
}
.dokan-image-size-hint strong {
    color: #333;
}


/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #admin-app {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .cards {
    grid-template-columns: 1fr;
  }
}
