* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #fff7e6;
  color: #171717;
}

.app-shell {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 24px 14px;
}

.phone-frame {
  width: 100%;
  max-width: 430px;
  background: #ffffff;
  border-radius: 32px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}

.hero {
  background: linear-gradient(135deg, #e92822, #ffb400);
  padding: 34px 24px 28px;
  color: #ffffff;
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.18);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 26px;
}

.logo-bolt {
  width: 20px;
  height: 20px;
  background: #ffdd35;
  color: #e92822;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.hero h1 {
  margin: 0;
  font-size: 34px;
  line-height: 1.02;
  letter-spacing: -1.2px;
}

.hero p {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.95;
}

.content {
  padding: 22px;
}

.quick-card {
  background: #fff4c7;
  border: 1px solid #ffe08a;
  border-radius: 22px;
  padding: 16px;
  margin-bottom: 18px;
}

.quick-card strong {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
}

.quick-card span {
  font-size: 13px;
  color: #4a4a4a;
}

.actions {
  display: grid;
  gap: 12px;
}

.btn {
  width: 100%;
  border: none;
  border-radius: 18px;
  padding: 16px 18px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  display: block;
  cursor: pointer;
}

.btn-primary {
  background: #e92822;
  color: #ffffff;
}

.btn-secondary {
  background: #171717;
  color: #ffffff;
}

.btn-light {
  background: #f3f3f3;
  color: #171717;
}

.footer-note {
  margin-top: 20px;
  font-size: 12px;
  color: #777;
  text-align: center;
  line-height: 1.4;
}
.form {
  display: grid;
  gap: 12px;
}

.form-group {
  display: grid;
  gap: 7px;
}

.form-group label {
  font-size: 13px;
  font-weight: 800;
  color: #252525;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #dedede;
  border-radius: 15px;
  padding: 14px 14px;
  font-size: 15px;
  outline: none;
  background: #ffffff;
}

.form-group textarea {
  min-height: 96px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #e92822;
  box-shadow: 0 0 0 3px rgba(233, 40, 34, 0.12);
}

.top-nav {
  padding: 18px 22px 0;
}

.back-link {
  color: #171717;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.page-title {
  padding: 18px 22px 0;
}

.page-title h1 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.8px;
}

.page-title p {
  margin: 8px 0 0;
  color: #666;
  font-size: 14px;
  line-height: 1.45;
}

.alert {
  border-radius: 18px;
  padding: 14px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.4;
}

.alert-error {
  background: #ffe8e8;
  border: 1px solid #ffb7b7;
  color: #8f1414;
}

.alert-success {
  background: #eaffef;
  border: 1px solid #a9e8b7;
  color: #126425;
}

.small-note {
  font-size: 12px;
  color: #777;
  line-height: 1.4;
}
.admin-top-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}

.stat-card {
  background: #f7f7f7;
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 15px;
}

.stat-card span {
  display: block;
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
}

.stat-card strong {
  font-size: 28px;
  line-height: 1;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.section-head h2 {
  margin: 0;
  font-size: 18px;
}

.section-head a {
  color: #e92822;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.booking-list {
  display: grid;
  gap: 10px;
}

.booking-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: #171717;
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 14px;
}

.booking-card strong {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
}

.booking-card span {
  display: block;
  font-size: 13px;
  color: #555;
  margin-bottom: 4px;
}

.booking-card small {
  display: block;
  font-size: 12px;
  color: #777;
}

.status-pill {
  background: #fff4c7;
  color: #7a4d00;
  border: 1px solid #ffe08a;
  border-radius: 999px;
  padding: 7px 9px;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}
.filter-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 14px;
}

.filter-chip {
  flex: 0 0 auto;
  text-decoration: none;
  color: #171717;
  background: #f3f3f3;
  border: 1px solid #e8e8e8;
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 800;
}

.filter-chip.active {
  background: #e92822;
  color: #ffffff;
  border-color: #e92822;
}

.detail-card {
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 20px;
  padding: 16px;
  margin-bottom: 14px;
}

.detail-card h2 {
  margin: 0 0 12px;
  font-size: 18px;
}

.detail-card p {
  margin: 7px 0;
  font-size: 14px;
  line-height: 1.45;
  color: #333;
}

.detail-card a {
  color: #e92822;
  font-weight: 800;
  text-decoration: none;
}

.timeline-item {
  border-top: 1px solid #eeeeee;
  padding-top: 12px;
  margin-top: 12px;
}

.timeline-item:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.timeline-item strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.timeline-item span {
  display: block;
  font-size: 12px;
  color: #777;
  margin-bottom: 6px;
}

.timeline-item p {
  margin: 0;
}
.progress-list {
  display: grid;
  gap: 10px;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f3f3f3;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 12px;
  color: #777;
}

.progress-step span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #dddddd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex: 0 0 auto;
}

.progress-step strong {
  font-size: 14px;
}

.progress-step.done {
  background: #fff4c7;
  border-color: #ffe08a;
  color: #171717;
}

.progress-step.done span {
  background: #e92822;
  color: #ffffff;
}