/* Draft AI - Dashboard Theme */
.draft-ai-container {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 120px);
  gap: 0;
  font-family: 'Segoe UI', sans-serif;
}

/* Header controls */
.draft-ai-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(20, 20, 30, 0.6);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.draft-ai-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.draft-ai-header-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

.draft-ai-btn {
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.6);
}

.draft-ai-btn:hover {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
}

.draft-ai-btn.active {
  background: rgba(52, 152, 219, 0.15);
  border-color: rgba(52, 152, 219, 0.4);
  color: #3498db;
}

.draft-ai-btn.reset {
  background: rgba(231, 76, 60, 0.1);
  border-color: rgba(231, 76, 60, 0.3);
  color: #e74c3c;
}

.draft-ai-btn.reset:hover {
  background: rgba(231, 76, 60, 0.2);
}

.draft-ai-btn.refresh {
  background: rgba(46, 204, 113, 0.1);
  border-color: rgba(46, 204, 113, 0.3);
  color: #2ecc71;
}

/* Weights panel */
.draft-ai-weights-panel {
  padding: 12px;
  background: rgba(20, 20, 30, 0.6);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  margin-bottom: 8px;
  flex-shrink: 0;
  display: none;
}

.draft-ai-weights-panel.visible {
  display: block;
}

.draft-ai-presets {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.draft-ai-preset-btn {
  flex: 1;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.5);
  text-align: center;
}

.draft-ai-preset-btn.active {
  background: rgba(52, 152, 219, 0.15);
  border-color: rgba(52, 152, 219, 0.4);
  color: #3498db;
}

.draft-ai-preset-btn .preset-name {
  font-weight: 700;
}

.draft-ai-preset-btn .preset-desc {
  font-size: 10px;
  opacity: 0.6;
  margin-top: 2px;
}

.draft-ai-weight-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.draft-ai-weight-label {
  width: 140px;
  flex-shrink: 0;
}

.draft-ai-weight-label .label-name {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

.draft-ai-weight-label .label-desc {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
}

.draft-ai-weight-row input[type="range"] {
  flex: 1;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  outline: none;
}

.draft-ai-weight-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #3498db;
  cursor: pointer;
}

.draft-ai-weight-value {
  width: 40px;
  text-align: right;
  font-size: 12px;
  font-weight: 700;
  font-family: monospace;
  color: #3498db;
}

/* Main board */
.draft-ai-board {
  display: flex;
  flex: 1;
  min-height: 0;
  gap: 0;
}

/* Side panels (blue / red) */
.draft-ai-side {
  width: 260px;
  display: flex;
  flex-direction: column;
  background: rgba(15, 15, 25, 0.3);
  border: 1px solid rgba(255,255,255,0.04);
  flex-shrink: 0;
  overflow: hidden;
}

.draft-ai-side.blue-side {
  border-radius: 8px 0 0 8px;
}

.draft-ai-side.red-side {
  border-radius: 0 8px 8px 0;
}

/* Bans row (horizontal inside side panel) */
.draft-ai-bans-row {
  padding: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.draft-ai-side-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}

.draft-ai-side-label.blue {
  color: #3498db;
}

.draft-ai-side-label.red {
  color: #e74c3c;
}

.draft-ai-bans-slots {
  display: flex;
  gap: 4px;
}

/* Ban slot */
.draft-ai-ban-slot {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.08);
  background: rgba(26, 26, 38, 0.5);
  cursor: pointer;
  transition: all 0.15s;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.draft-ai-ban-slot:hover {
  border-color: rgba(255,255,255,0.15);
}

.draft-ai-ban-slot.selected {
  border-color: #f39c12;
  box-shadow: 0 0 12px rgba(243, 156, 18, 0.3);
}

.draft-ai-ban-slot.filled img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  opacity: 0.35;
  filter: grayscale(100%);
}

.draft-ai-ban-slot .ban-x {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.draft-ai-ban-slot .ban-x::before,
.draft-ai-ban-slot .ban-x::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: #e74c3c;
  top: 50%;
  left: 50%;
  box-shadow: 0 0 6px rgba(231, 76, 60, 0.5);
}

.draft-ai-ban-slot .ban-x::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.draft-ai-ban-slot .ban-x::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.draft-ai-ban-slot .ban-remove {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e74c3c;
  color: white;
  font-size: 9px;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.2);
}

.draft-ai-ban-slot:hover .ban-remove {
  display: flex;
}

.draft-ai-ban-slot .ban-placeholder {
  font-size: 8px;
  font-weight: 700;
  opacity: 0.25;
  text-transform: uppercase;
}

/* Team header (winrate) */
.draft-ai-team-header {
  padding: 10px 12px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.draft-ai-winrate {
  font-size: 28px;
  font-weight: 700;
  font-family: monospace;
  line-height: 1;
}

.draft-ai-winrate.positive {
  color: #2ecc71;
}

.draft-ai-winrate.negative {
  color: #e74c3c;
}

.draft-ai-winrate.neutral {
  color: rgba(255,255,255,0.5);
}

.draft-ai-winrate-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.3);
  margin-top: 2px;
}

/* Team picks */
.draft-ai-team-picks {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 4px;
  min-height: 0;
  overflow: hidden;
}

/* Pick slot */
.draft-ai-pick-slot {
  flex: 1;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.06);
  background: rgba(26, 26, 38, 0.3);
  cursor: pointer;
  transition: all 0.15s;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 50px;
}

.draft-ai-pick-slot:hover {
  border-color: rgba(255,255,255,0.12);
}

.draft-ai-pick-slot.selected.blue {
  border-color: #3498db;
  box-shadow: 0 0 15px rgba(52, 152, 219, 0.25), inset 0 0 15px rgba(52, 152, 219, 0.1);
}

.draft-ai-pick-slot.selected.red {
  border-color: #e74c3c;
  box-shadow: 0 0 15px rgba(231, 76, 60, 0.25), inset 0 0 15px rgba(231, 76, 60, 0.1);
}

.draft-ai-pick-slot .pick-splash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.3s;
}

.draft-ai-pick-slot:hover .pick-splash {
  transform: scale(1.05);
}

.draft-ai-pick-slot .pick-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 40%, transparent 100%);
}

.draft-ai-pick-slot .pick-tint {
  position: absolute;
  inset: 0;
}

.draft-ai-pick-slot.blue .pick-tint {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.08) 0%, transparent 50%);
}

.draft-ai-pick-slot.red .pick-tint {
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.08) 0%, transparent 50%);
}

.draft-ai-pick-slot .pick-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(231, 76, 60, 0.9);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 10px;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.draft-ai-pick-slot:hover .pick-remove {
  display: flex;
}

/* Pick info overlay */
.draft-ai-pick-info {
  position: relative;
  z-index: 5;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.draft-ai-pick-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

.draft-ai-pick-name {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.draft-ai-pick-role-text {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
}

/* Coherence panel */
.draft-ai-coherence {
  padding: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.draft-ai-coherence-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.draft-ai-coherence-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
}

.draft-ai-coherence-score {
  font-size: 13px;
  font-weight: 700;
  font-family: monospace;
}

.draft-ai-stat-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 3px;
}

.draft-ai-stat-bar .stat-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.35);
  width: 50px;
  text-align: right;
  flex-shrink: 0;
}

.draft-ai-stat-bar .stat-track {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.draft-ai-stat-bar .stat-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 0.3s;
}

.draft-ai-stat-bar .stat-value {
  font-size: 9px;
  font-weight: 700;
  font-family: monospace;
  width: 24px;
  flex-shrink: 0;
}

.draft-ai-warnings {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-top: 4px;
}

.draft-ai-warning-tag {
  padding: 1px 6px;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 3px;
  background: rgba(231, 76, 60, 0.12);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.25);
}

/* Champion pool (center) */
.draft-ai-pool {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: rgba(15, 15, 25, 0.2);
  border: 1px solid rgba(255,255,255,0.04);
}

.draft-ai-pool-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.draft-ai-search {
  flex: 1;
  height: 34px;
  padding: 0 12px 0 34px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(26, 26, 38, 0.8);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  color: white;
  outline: none;
  transition: all 0.15s;
}

.draft-ai-search:focus {
  border-color: #3498db;
  box-shadow: 0 0 10px rgba(52, 152, 219, 0.15);
}

.draft-ai-search-wrapper {
  position: relative;
  flex: 1;
}

.draft-ai-search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: rgba(255,255,255,0.3);
}

.draft-ai-role-filters {
  display: flex;
  gap: 4px;
}

.draft-ai-role-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(26, 26, 38, 0.5);
  cursor: pointer;
  transition: all 0.15s;
}

.draft-ai-role-btn:hover {
  border-color: rgba(255,255,255,0.15);
}

.draft-ai-role-btn.active {
  background: rgba(52, 152, 219, 0.15);
  border-color: rgba(52, 152, 219, 0.4);
}

.draft-ai-role-btn img {
  width: 18px;
  height: 18px;
  opacity: 0.35;
  transition: all 0.15s;
}

.draft-ai-role-btn.active img {
  opacity: 1;
  filter: brightness(1.5) drop-shadow(0 0 3px rgba(52, 152, 219, 0.5));
}

/* Champion list */
.draft-ai-list {
  flex: 1;
  overflow-y: auto;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  scrollbar-width: none;
}

.draft-ai-list::-webkit-scrollbar {
  display: none;
}

.draft-ai-champ-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(26, 26, 38, 0.5);
  cursor: pointer;
  transition: all 0.15s;
}

.draft-ai-champ-row:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
}

.draft-ai-champ-row.disabled {
  opacity: 0.25;
  pointer-events: none;
  filter: grayscale(100%);
}

.draft-ai-champ-row-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.draft-ai-champ-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.draft-ai-champ-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.draft-ai-champ-name {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.draft-ai-champ-meta {
  display: flex;
  align-items: center;
  gap: 6px;
}

.draft-ai-champ-pos {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
}

.draft-ai-champ-stats {
  font-size: 9px;
  font-family: monospace;
  color: rgba(255,255,255,0.3);
}

.draft-ai-score-wrapper {
  position: relative;
  flex-shrink: 0;
  margin-left: 8px;
}

.draft-ai-champ-score {
  font-size: 13px;
  font-weight: 700;
  font-family: monospace;
  cursor: help;
}

/* Score tooltip */
.draft-ai-tooltip {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 6px;
  z-index: 50;
  min-width: 220px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(18, 18, 26, 0.98);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.draft-ai-score-wrapper:hover .draft-ai-tooltip {
  display: block;
}

.draft-ai-tooltip-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.draft-ai-tooltip-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 0;
}

.draft-ai-tooltip-label {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
}

.draft-ai-tooltip-value {
  font-size: 11px;
  font-weight: 700;
  font-family: monospace;
}

.draft-ai-tooltip-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 6px 0;
}

/* Loading */
.draft-ai-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-direction: column;
  gap: 12px;
}

.draft-ai-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: #3498db;
  border-radius: 50%;
  animation: draftAiSpin 1s linear infinite;
}

@keyframes draftAiSpin {
  to { transform: rotate(360deg); }
}

.draft-ai-loading-text {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
}

/* Log panel */
.draft-ai-graph-panel {
  padding: 8px 12px;
  background: rgba(20, 20, 30, 0.6);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  margin-top: 8px;
  flex-shrink: 0;
  display: none;
  max-height: 200px;
  overflow-y: auto;
}

.draft-ai-graph-panel.visible {
  display: block;
}

.draft-ai-log-entry {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 3px 0;
  font-size: 11px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.draft-ai-log-entry:last-child {
  border-bottom: none;
}

.draft-ai-log-type {
  padding: 1px 6px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 3px;
}

.draft-ai-log-type.pick {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
}

.draft-ai-log-type.ban {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
}

.draft-ai-log-team {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  width: 30px;
}

.draft-ai-log-champ {
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.draft-ai-log-wr {
  margin-left: auto;
  font-family: monospace;
  font-weight: 700;
  font-size: 11px;
}

/* Excluded panel */
.draft-ai-excluded-panel {
  background: rgba(20, 20, 30, 0.6);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.draft-ai-excluded-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.draft-ai-excluded-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f39c12;
}

.draft-ai-btn-clear-excluded {
  padding: 3px 8px;
  font-size: 9px;
  color: #e74c3c;
  border-color: rgba(231, 76, 60, 0.3);
}

.draft-ai-btn-clear-excluded:hover {
  background: rgba(231, 76, 60, 0.15);
  border-color: rgba(231, 76, 60, 0.5);
}

.draft-ai-excluded-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}

.draft-ai-excluded-slot {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: 2px solid rgba(243, 156, 18, 0.2);
  background: rgba(243, 156, 18, 0.05);
  cursor: pointer;
  transition: all 0.15s;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.draft-ai-excluded-slot:hover {
  border-color: rgba(243, 156, 18, 0.4);
}

.draft-ai-excluded-slot.selected {
  border-color: #f39c12;
  box-shadow: 0 0 12px rgba(243, 156, 18, 0.3);
}

.draft-ai-excluded-slot.filled img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  opacity: 0.5;
  filter: grayscale(60%);
}

.draft-ai-excluded-slot.filled:hover img {
  opacity: 0.7;
}

.excluded-remove {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e74c3c;
  color: white;
  font-size: 9px;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.2);
}

.draft-ai-excluded-slot.filled:hover .excluded-remove {
  display: flex;
}

.draft-ai-excluded-slot.add {
  border-style: dashed;
  border-color: rgba(243, 156, 18, 0.25);
}

.draft-ai-excluded-slot.add:hover {
  border-color: rgba(243, 156, 18, 0.5);
  background: rgba(243, 156, 18, 0.1);
}

.excluded-add-icon {
  font-size: 16px;
  font-weight: 300;
  color: rgba(243, 156, 18, 0.4);
  line-height: 1;
}

.draft-ai-excluded-slot.add:hover .excluded-add-icon {
  color: rgba(243, 156, 18, 0.7);
}

.draft-ai-excluded-slot.add.selected .excluded-add-icon {
  color: #f39c12;
}

/* Responsive */
@media (max-width: 1400px) {
  .draft-ai-side {
    width: 220px;
  }
  .draft-ai-ban-slot {
    width: 36px;
    height: 36px;
  }
  .draft-ai-excluded-slot {
    width: 32px;
    height: 32px;
  }
}
