/* Iron Market v2.6 Styles */

.iron-market-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.iron-market-main-title {
  font-size: 22px;
  font-weight: 700;
  color: #007557;
  margin-bottom: 8px;
  text-align: center; /* عنوان اصلی در مرکز نمایش داده شود */
}
.iron-market-section {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.iron-market-section-title {
  font-size: 18px;
  font-weight: 700;
  color: #007557;
  margin: 0 0 16px 0;
  border-bottom: 2px solid #e5e5e5;
  padding-bottom: 8px;
  text-align: right;
}

/* Update date span in section titles */
.im-section-update {
  font-size: 14px;
  font-weight: 400;
  color: #777;
  margin-left: 8px;
  display: inline-block;
}

/* Table layout */
.iron-market-table-container { overflow-x: auto; }
.iron-market-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  direction: rtl;
  text-align: center;
}
.iron-market-table thead th {
  background: #f7f7f7;
  color: #007557;
  font-weight: 600;
  padding: 12px 10px;
  border-bottom: 1px solid #e0e0e0;
  white-space: nowrap;
}
.iron-market-table tbody td {
  padding: 12px 10px;
  border-bottom: 1px solid #e0e0e0;
  white-space: nowrap;
}
/* تغییر رنگ پس‌زمینهٔ ردیف‌های جدول به‌صورت یکی در میان با رنگ سبز بسیار کم‌رنگ */
.iron-market-table tbody tr:nth-child(odd) { background: #f5f9f8; }
.iron-market-table tbody tr:nth-child(even) { background: #ffffff; }
.iron-market-table tbody tr:hover { background: #f0f0f0; }

/* Cards layout */
.iron-market-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(250px,1fr));
  gap: 12px;
}
.iron-market-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  direction: rtl;
}

/* اعمال رنگ پس‌زمینهٔ متفاوت برای کارت‌ها به صورت یکی در میان */
.iron-market-cards .iron-market-card:nth-child(odd) {
  background-color: #f5f9f8;
}
.iron-market-cards .iron-market-card:nth-child(even) {
  background-color: #ffffff;
}
.iron-market-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.iron-market-card-list li {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px dashed #e0e0e0;
}
.iron-market-card-list li:last-child { border-bottom: none; }
.iron-market-key {
  color: #666;
  font-weight: 600;
}
.iron-market-val {
  color: #111;
}
.iron-market-meta {
  color: #777;
  font-size: 12px;
  text-align: right;
}

/* Chart */
.iron-market-chart { margin-top: 10px; text-align: center; }
.iron-market-chart-title {
  font-size: 18px;
  font-weight: 600;
  color: #007557;
  margin-bottom: 12px;
}

/* Admin Page */
.iron-market-admin-wrap .iron-market-admin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.iron-market-admin-col {
  background: #fff;
  border: 1px solid #e6e6e6;
  padding: 16px;
  border-radius: 8px;
}
.im-shortcodes code {
  display: inline-block;
  direction: ltr;
  background: #f4f4f4;
  padding: 6px 8px;
  border-radius: 6px;
  margin: 4px 0;
}
@media (max-width: 960px) {
  .iron-market-admin-wrap .iron-market-admin-grid { grid-template-columns: 1fr; }
  .iron-market-cards { grid-template-columns: 1fr; }
}
