body {
  margin: 0;
  padding: 0;
  background-color: #000;
  background-image: url('../images/BG_page.png');
  background-size: cover;
  background-position: center;
  font-family: 'Orbitron', sans-serif;
  color: #00ffff;
}

.background-overlay .logo {
  width: 160px;
  margin: 20px auto;
  display: block;
  filter: drop-shadow(0 0 10px #00ffff);
}

.logged-in-user {
  text-align: center;
  font-size: 20px;
  color: #00ffff;
  margin-top: -10px;
  text-shadow: 0 0 5px #00ffff;
}

.prediction-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  margin: 30px auto;
  max-width: 1600px;
  padding: 20px;
}

.prediction-box,
.matchup-box {
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.7);
  border: 2px solid #00ffff;
  border-radius: 12px;
  box-shadow: 0 0 15px #00ffff;
  flex-shrink: 0;
}

.prediction-box {
  width: 260px;
}

.matchup-box {
  flex-grow: 1;
  max-width: 1000px;
}

.prediction-box h2,
.matchup-box h2 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 12px;
}

.prediction-item {
  padding: 12px;
  margin: 10px 0;
  text-align: center;
  background-color: rgba(0, 0, 50, 0.6);
  border-radius: 6px;
  border: 1px solid #00ffff;
  box-shadow: 0 0 6px #00ffff;
  cursor: pointer;
}

.matchups {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.matchup-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(25, 25, 50, 0.85);
  padding: 12px 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px #00ffff;
  flex-wrap: wrap;
}

.slot-name {
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  min-width: 80px;
  text-align: center;
}

.slot-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 10px;
  border: 2px solid #00ffff;
  background-color: #111;
  margin: 0 10px;
  cursor: pointer;
}

.score {
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  min-width: 60px;
  text-align: center;
}

.submit-section {
  text-align: center;
  margin-top: 40px;
  padding-bottom: 40px;
}

#submitBtn {
  padding: 15px 40px;
  font-size: 18px;
  background-color: #000;
  color: #00ffff;
  border: 2px solid #00ffff;
  border-radius: 10px;
  box-shadow: 0 0 15px #00ffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

#submitBtn:hover {
  background-color: #00ffff;
  color: #000;
}

.selected-slot {
  box-shadow: 0 0 15px #00ffcc;
  outline: 2px solid #00ffff;
  transform: scale(1.05);
}

.active-pick {
  background-color: #00ffff !important;
  color: #000 !important;
  font-weight: bold;
}
