#dscr-dashboard-shell {
  max-width: 1100px;
  margin: 0 auto 36px auto;
  padding: 10px 0 0 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #1f1f1f;
}

.dscr-shell-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.dscr-shell-card {
  border: 1px solid #d8d8d8;
  border-radius: 14px;
  background: #fff;
  padding: 26px 24px;
  box-sizing: border-box;
}

.dscr-shell-card h2 {
  margin: 0 0 10px 0;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 500;
  color: #1f1f1f;
}

.dscr-shell-card h3 {
  margin: 0 0 18px 0;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
  color: #1f1f1f;
}

.dscr-state-badge {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
  border: 1px solid #c9d2dd;
  background: #eef3f8;
  color: #2a2f36;
  line-height: 1;
}

.dscr-state-not_started { background: #f4f4f4; }
.dscr-state-awaiting_payment { background: #fff6df; }
.dscr-state-paid { background: #eaf2ff; }
.dscr-state-report_ready { background: #ebf8ee; }
.dscr-state-report_sent { background: #eef3f8; }

.dscr-service-detail {
  margin: 12px 0;
  color: #1f1f1f;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
}

.dscr-service-detail strong {
  font-weight: 700;
  color: #1f1f1f;
}

.dscr-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.dscr-button {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
  cursor: pointer;
}

.dscr-button:hover,
.dscr-button:focus {
  text-decoration: none;
  opacity: 0.92;
}

.dscr-button-secondary {
  border: 1px solid #222;
  background: #111;
  color: #fff;
}

.dscr-button-outline {
  border: 1px solid #222;
  background: #fff;
  color: #222;
}

.dscr-muted {
  color: #4f4f4f;
  font-size: 16px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .dscr-shell-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dscr-shell-grid > :first-child {
    grid-column: 1 / -1;
  }
}
