* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #f5f5f5;
  color: #333;
}

.warning-banner {
  background: #ff9800;
  color: #fff;
  padding: 12px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}

.container {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

h1 {
  margin-bottom: 8px;
  color: #1a1a1a;
}

.subtitle {
  color: #666;
  margin-bottom: 30px;
  font-size: 14px;
}

.card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 24px;
  margin-bottom: 20px;
}

.card h2 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.card .description {
  font-size: 13px;
  color: #888;
  margin-bottom: 12px;
}

.status {
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 14px;
}

.status.authenticated {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.status.unauthenticated {
  background: #fff3e0;
  color: #e65100;
  border: 1px solid #ffe0b2;
}

/* Claims table */
.claims-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.claims-table th,
.claims-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
}

.claims-table th {
  font-weight: 600;
  color: #555;
  width: 200px;
}

.claims-table td {
  word-break: break-all;
  font-family: 'SF Mono', Monaco, monospace;
  font-size: 13px;
}

/* Buttons */
button {
  background: #1976d2;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  margin-right: 8px;
  margin-bottom: 8px;
}

button:hover {
  background: #1565c0;
}

button:disabled {
  background: #bbb;
  cursor: not-allowed;
}

button.secondary {
  background: #757575;
}

button.secondary:hover {
  background: #616161;
}

button.danger {
  background: #d32f2f;
}

button.danger:hover {
  background: #c62828;
}

/* API response */
.api-response {
  background: #263238;
  color: #a5d6a7;
  padding: 16px;
  border-radius: 6px;
  font-family: 'SF Mono', Monaco, monospace;
  font-size: 13px;
  white-space: pre-wrap;
  word-break: break-all;
  margin-top: 12px;
  display: none;
}

/* Loading */
.loading {
  text-align: center;
  padding: 40px;
  color: #999;
}

/* Token preview */
.token-preview {
  background: #f5f5f5;
  padding: 12px;
  border-radius: 6px;
  font-family: 'SF Mono', Monaco, monospace;
  font-size: 11px;
  word-break: break-all;
  max-height: 100px;
  overflow-y: auto;
  margin-top: 12px;
  color: #666;
}