:root {
  color-scheme: light;
  font-family: "Inter", "Segoe UI", sans-serif;
  background: #f5f6fb;
  color: #1f2937;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0 0 48px;
}

.page-header {
  text-align: center;
  padding: 40px 16px 12px;
}

.page-header h1 {
  margin: 0 0 12px;
  font-size: 28px;
}

.page-header p {
  margin: 0;
  color: #4b5563;
}

.page-content {
  max-width: 920px;
  margin: 0 auto;
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input[type="text"],
input[type="file"] {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
}

button {
  padding: 12px 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

button.primary {
  background: #2563eb;
  color: #ffffff;
}

button.secondary {
  background: #e5e7eb;
  color: #111827;
}

.status {
  min-height: 20px;
  font-size: 14px;
  color: #4b5563;
}

.status.error {
  color: #dc2626;
}

.status.success {
  color: #16a34a;
}

.bulk-actions {
  display: flex;
  justify-content: flex-start;
}

.turnstile {
  min-height: 1px;
}
