/* Custom brand styles: white/blue, modern buttons, clear layout */
body {
  background: #f8fafc;
  color: #1e293b;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}
.btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 600;
  background: #2563eb;
  color: #fff;
  box-shadow: 0 2px 8px rgba(37,99,235,0.08);
  transition: background 0.2s, box-shadow 0.2s;
}
.btn:hover {
  background: #1d4ed8;
  box-shadow: 0 4px 16px rgba(37,99,235,0.12);
}
.btn-secondary {
  background: #fff;
  color: #2563eb;
  border: 1px solid #2563eb;
}
.btn-secondary:hover {
  background: #e0e7ff;
}
.table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(37,99,235,0.08);
}
.table th, .table td {
  padding: 1rem;
  border-bottom: 1px solid #e0e7ff;
}
.table th {
  background: #e0e7ff;
  color: #2563eb;
}
.table tr:last-child td {
  border-bottom: none;
}
.form-label {
  font-weight: 500;
  color: #2563eb;
}
.form-control {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #e0e7ff;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.form-control:focus {
  border-color: #2563eb;
  outline: none;
  box-shadow: 0 0 0 2px #bfdbfe;
}
.card {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(37,99,235,0.08);
  padding: 2rem;
  margin-bottom: 2rem;
}
