body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  background: #fafafa;
  color: #222;
}

.container {
  max-width: 480px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.logo {
  max-width: 200px;
  margin: 0 auto 20px;
}

h1 {
  margin-bottom: 10px;
}

p {
  margin-bottom: 20px;
}

.button-grid {
  display: grid;
  gap: 12px;
}

button {
  padding: 14px 18px;
  border-radius: 999px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  font-weight: 600;
  background: #ff3333;
  color: white;
  transition: transform 0.05s ease, box-shadow 0.05s ease, opacity 0.3s;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

button.secondary {
  background: white;
  color: #ff3333;
  border: 2px solid #ff3333;
  box-shadow: none;
}

button:active {
  transform: translateY(1px);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.status {
  margin-top: 20px;
  font-size: 14px;
  color: #555;
}

.request-list {
  margin-top: 20px;
  text-align: left;
}

.request-item {
  background: white;
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.request-info {
  font-size: 14px;
}

.request-info strong {
  font-size: 15px;
}

.request-item button {
  padding: 8px 14px;
  font-size: 13px;
  border-radius: 999px;
  background: #00b894;
  color: #fff;
}

.badge {
  display: inline-block;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #ffeaa7;
  margin-left: 6px;
}

footer {
  width: 100%;
  text-align: center;
  padding: 20px 0;
  color: #777;
  font-size: 14px;
  margin-top: 40px;
  opacity: 0.9;
}
