/* ===== DRAFT ANALYSIS PAGE STYLES ===== */

:root {
  --primary: #2563eb;
  --primary-light: #3b82f6;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  background: #f8fafc;
  min-height: 100vh;
}

/* ===== HEADER STYLES ===== */
.header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-bottom: none;
  padding: 2rem 0;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.league-info {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.nav .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.nav .btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ===== MAIN CONTENT ===== */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 2rem 2rem;
}























/* ===== ERROR MESSAGE ===== */
.error-message {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.error-message h2 {
  color: var(--danger);
  margin-bottom: 1rem;
}

.error-message p {
  color: var(--gray-600);
  font-size: 1.1rem;
}

/* ===== ROUND SELECTION ===== */
.round-selection {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  border: none;
}

.round-selection h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
  font-weight: 700;
}

.round-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.round-btn {
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-weight: 600;
  color: var(--gray-800);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.round-btn:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.round-btn.active {
  background: white;
  border-color: white;
  color: var(--primary);
  box-shadow: var(--shadow-md);
  font-weight: 700;
}



/* ===== ENHANCED DRAFT DISPLAY ===== */
.simple-draft {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.simple-draft h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--gray-900);
}

.draft-list {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.draft-list-content {
  display: flex;
  flex-direction: column;
  max-height: none;
  overflow-y: visible;
}

.draft-header {
  display: grid;
  grid-template-columns: 60px 1fr 220px;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--gray-100);
  border-bottom: 2px solid var(--gray-300);
  font-weight: 700;
  color: var(--gray-700);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.header-pick {
  text-align: center;
}

.header-team {
  text-align: right;
}

.draft-pick-row {
  display: grid;
  grid-template-columns: 60px 1fr 220px;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--gray-100);
  align-items: center;
  transition: background-color 0.2s ease;
}

.draft-pick-row:nth-child(even) {
  background: var(--gray-50);
}

.draft-pick-row:hover {
  background: var(--gray-100);
}

.draft-pick-row:last-child {
  border-bottom: none;
}

.draft-pick-row.highlighted {
  background: var(--success);
  color: white;
}

.pick-number {
  font-weight: 800;
  color: var(--primary);
  font-size: 1rem;
  text-align: center;
}

.player-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.player-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nfl-logo-small {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: 50%;
  overflow: hidden;
}

.nfl-team-logo-small {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.player-details-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.player-name {
  font-weight: 700;
  color: var(--gray-900);
  font-size: 0.9rem;
}

.player-details {
  color: var(--gray-600);
  font-size: 0.8rem;
}

.fantasy-team-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: flex-end;
}

.team-logo-small {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: 50%;
  overflow: hidden;
}

.team-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  text-align: right;
}

.fantasy-team {
  color: var(--gray-900);
  font-weight: 700;
  font-size: 0.9rem;
}

.team-owner {
  color: var(--gray-500);
  font-size: 0.75rem;
  font-style: italic;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .header h1 {
    font-size: 2rem;
  }
  
  .main-content {
    padding: 1rem;
  }
  
  .round-buttons {
    gap: 0.5rem;
  }
  
  .round-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}
