/* Reset */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #0f172a;
  color: #e5e7eb;
}

/* Layout */
.container {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
}

.subtitle {
  color: #9ca3af;
  margin-bottom: 40px;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: #1e293b;
  padding: 20px;
  border-radius: 12px;
}

/* Buttons style for ALL pages */
.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 14px;
  background: #e5e7eb;
  color: #020617;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.btn.secondary {
  background: #334155;
  color: #e5e7eb;
}

/* Hover effects ONLY on requester.html  */
/* REQUESTER PAGE ONLY button behavior */
.requester-page .btn.secondary {
  background: #334155;
  color: #e5e7eb;
  transition: background 0.2s ease, transform 0.15s ease;
}

.requester-page .btn.secondary:hover {
  background: #e5e7eb;
  color: #020617;
  transform: translateY(-2px);
}

/* Footer */
footer {
  margin-top: 40px;
  color: #9ca3af;
}
/* Dark themed selects (agent + requester pages) */
select {
  background-color: #0b1220;
  color: #e5e7eb;
  border: 1px solid #334155;
  border-radius: 8px;
  padding: 10px;
}

/* Hover / focus state */
select:hover,
select:focus {
  border-color: #475569;
  outline: none;
}

/* Dropdown options */
select option {
  background-color: #0b1220;
  color: #e5e7eb;
}

