:root {
  --bg-a: #f7f0e9;
  --bg-b: #e6edf7;
  --ink: #1d1d1f;
  --accent: #cf6f36;
  --glass: rgba(255, 255, 255, 0.72);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Vazirmatn", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top right, var(--bg-b), transparent 55%),
    radial-gradient(circle at bottom left, var(--bg-a), transparent 60%),
    #fdfbf8;
  min-height: 100vh;
}

.page {
  min-height: 100vh;
}

h1 {
  font-weight: 700;
  letter-spacing: -0.5px;
}

.glass-card {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 16px 40px rgba(44, 62, 80, 0.08);
  backdrop-filter: blur(14px);
}

.result-box {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 16px;
  min-height: 160px;
  border: 1px dashed rgba(0, 0, 0, 0.08);
}

.result-box h6 {
  font-weight: 600;
  color: var(--accent);
}

.result-box li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.result-box li:last-child {
  border-bottom: none;
}

.form-select,
.form-label {
  font-size: 0.95rem;
}

.badge {
  font-weight: 600;
  color: var(--accent);
}

.soft-card {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 24px rgba(44, 62, 80, 0.08);
}

.is-hidden {
  display: none !important;
}

.section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.section-title h5 {
  font-weight: 700;
  margin: 0;
}

.stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.9rem;
}

.table-wrap {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 12px;
  border: 1px dashed rgba(0, 0, 0, 0.08);
  overflow-x: auto;
}

.table {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.table thead th {
  background: rgba(207, 111, 54, 0.1);
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
}

.copyright {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 12px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(29, 29, 31, 0.65);
  pointer-events: none;
}
