
.status-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.status-card {
  background: white;
  padding: 4rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  text-align: center;
  border: 1px solid var(--gray-lighter);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
}

.status-card h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.8rem;
}

.status-card p {
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.search-box {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.search-box input {
  flex: 1;
  margin-bottom: 0;
}

.search-box button {
  padding: 0 2rem;
}

.result-area {
  text-align: left;
  margin-top: 3rem;
  border-top: 1px solid var(--gray-lighter);
  padding-top: 2rem;
}

.history-card {
  background: var(--light);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.2rem;
  border: 1px solid var(--gray-lighter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.history-card:hover {
  transform: translateX(5px);
  border-color: var(--primary-light);
}

.history-card p {
  margin: 0;
  color: var(--text);
  font-weight: 500;
}

.history-card b {
  color: var(--text-lighter);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

.status-pill {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: capitalize;
}

.status-confirmed {
  background: #dcfce7;
  color: #166534;
}

.status-pending {
  background: #fef3c7;
  color: #92400e;
}

.status-cancelled {
  background: #fee2e2;
  color: #991b1b;
}

.status-empty {
  text-align: center;
  color: var(--text-light);
  font-style: italic;
  padding: 2rem 0;
}

/* Responsive */
@media (max-width: 600px) {
  .search-box {
    flex-direction: column;
  }

  .status-card {
    padding: 2.5rem 1.5rem;
  }

  .history-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* Dark Mode */
body.dark .status-card,
body.dark .history-card {
  background: var(--white);
  border-color: #334155;
}

body.dark .status-card h2 {
  color: white;
}

body.dark .history-card p {
  color: white;
}

body.dark .result-area {
  border-top-color: #334155;
}

body.dark .card-icon {
  background: #064e3b;
  color: #10b981;
}