.playerSeasonVoteCard {
  width: min(92vw, 560px);
  max-height: 88dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.playerSeasonVoteCard .modalBody {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.playerSeasonVoteCard h3 {
  font-size: 15px;
  line-height: 1.25;
  margin: 0 0 12px;
}

.voteDeadline {
  color: #ffd740;
  font-weight: 800;
  font-size: 13px;
}

.playerSeasonVoteControls {
  display: flex;
  gap: 8px;
  margin: 10px 0 16px;
}

#playerSeasonVoteSelect {
  min-width: 0;
  flex: 1;
  height: 38px;
  border-radius: 10px;
  background: #0f1115;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 0 10px;
  font-weight: 800;
}

#submitPlayerSeasonVoteBtn,
#expandPlayerSeasonStatsBtn {
  border: 0;
  border-radius: 10px;
  background: #ffd740;
  color: #060606;
  font-weight: 900;
  padding: 0 12px;
  min-height: 38px;
}

.playerSeasonStatsSection h4 {
  margin: 12px 0 8px;
  color: #ffd740;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .8px;
}

.playerSeasonStatsWrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .04);
  margin-bottom: 10px;
}

#playerSeasonVoteStatsTable {
  width: max-content;
  min-width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  color: #fff;
}

#playerSeasonVoteStatsTable th {
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .78);
  text-transform: uppercase;
  padding: 9px 10px;
  font-size: 11px;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255, 215, 64, .45);
}

#playerSeasonVoteStatsTable td {
  padding: 8px 10px;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-weight: 800;
}

#playerSeasonVoteStatsTable tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, .05);
}


#playerSeasonVoteLauncher {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 215, 64, .7);
  background: rgba(15, 17, 21, .96);
  color: #ffd740;
  font-size: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
}