/* Jail Baste - Shared Styles */

:root {
  --primary: #302050;
  --accent: #ff6b35;
  --bg-dark: #1a1525;
  --bg-card: #252035;
  --text-primary: #ffffff;
  --text-secondary: #b0a8c0;
  --text-muted: #6a6080;
  --border: #3a3050;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: #e55a28;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Donor Selection Indicator */
.donor-card {
  position: relative;
}

.donor-card.selected {
  border: 3px solid var(--accent);
  box-shadow: 0 0 20px rgba(196, 30, 58, 0.3);
}

.donor-card.selected::after {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7 2v2h1v14c0 .6.4 1 1 1h2v3l2-2 2 2v-3h2c.6 0 1-.4 1-1V4h1V2H7zm8 14h-1.5v-2H12v2h-1.5v-2H9V9h1.5v2H12V9h1.5v2H15v5z'/%3E%3C/svg%3E") center/18px no-repeat;
  border-radius: 50%;
  z-index: 10;
}
