body {
    margin: 0;
    font-family: Vazirmatn, Tahoma, sans-serif;
    background: radial-gradient(circle at top, #0b1a2d, #020811);
    color: #fff;
    min-height: 100vh;
}

.container {
    max-width: 420px;
    margin: 80px auto;
    padding: 20px;
    text-align: center;
}

h1 {
    margin-bottom: 5px;
}

.subtitle {
    color: #9bb4d8;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.status {
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* بر اساس code از Backend */
.status.perfect_run  { background: #1e7f4d; }
.status.light_run    { background: #b59427; color: #000; }
.status.no_run       { background: #8b1e1e; }
.status.data_error   { background: #444; }
.status.error        { background: #555; }
.status.loading      { background: #1b2a45; }

.details {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.hidden {
    display: none;
}

button {
    background: #ffffff22;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
}

button:hover {
    background: #ffffff44;
}

.status {
  padding: 14px;
  border-radius: 12px;
  margin-bottom: 16px;
  font-weight: bold;
  text-align: center;
}

.status.loading {
  background: #2c3e50;
  color: #ecf0f1;
}

.status.go_run {
  background: #1e8449;
  color: #ecf0f1;
}

.status.caution_run {
  background: #f39c12;
  color: #2c3e50;
}

.status.no_run {
  background: #c0392b;
  color: #ecf0f1;
}

.status.error {
  background: #7f8c8d;
  color: #fff;
}

.hidden {
  display: none;
}

.guidance {
  margin-top: 60px;
  text-align: center;
}

.guidance ul {
  list-style: none;
  padding: 0;
}

.guidance li {
  margin: 6px 0;
  font-size: 1.5rem;
  opacity: 0.9;
}

