#PlayerPool input.lock {
  width: 24px;
  height: 24px;
}
#PlayerPool input.min-exp,
#PlayerPool input.max-exp {
  width: 60px;
  padding: 4px;
  background: #111;
  border: 1px solid #1de1d1;
  border-radius: 4px;
  color: #fff;
}
.team-stack-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}
.team-stack-item .team-stack-header {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}
.team-stack-item .team-name {
  margin-left: 6px;
  font-weight: 600;
}
.team-stack-item .team-stack-inputs {
  display: flex;
  gap: 5px;
}
.team-stack-item .team-stack-inputs label {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  color: #fff;
}
.team-stack-item .team-stack-inputs label input {
  margin-top: 2px;
}
.team-stack-item input {
  width: 60px;
  padding: 4px;
  background: #111;
  border: 1px solid #1de1d1;
  border-radius: 4px;
  color: #fff;
}

.optimizer-output {
  width: 100%;
}

.lineup-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 15px;
}

#ExposureResults {
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  overflow-x: auto;
  margin-bottom: 15px;
}

#SimpleOptimizerResults {
  width: 100%;
  overflow-x: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.exposure-card {
  background: #111;
  border: 1px solid #1de1d1;
  border-radius: 4px;
  padding: 10px;
}

.exposure-tabs {
  display: flex;
  margin-bottom: 8px;
}

.exp-tab {
  flex: 1;
  background: #222;
  border: none;
  color: #fff;
  padding: 4px;
  cursor: pointer;
}

.exp-tab.active {
  background: #1de1d1;
  color: #000;
}

.exposure-table th,
.exposure-table td {
  padding: 4px;
}


.table-scroll-wrapper {
  width: 100%;
  overflow-x: auto;
}

.table-scroll-wrapper table {
  min-width: 100%;
}

.export-lineups-wrapper {
  margin-bottom: 10px;
}

.export-lineups-wrapper button {
  background: #1de1d1;
  border: none;
  color: #000;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  margin-right: 6px;
  transition: background 0.2s;
}

.export-lineups-wrapper button:hover {
  background: #17b3a5;
}

.lock-indicator {
  display: inline-block;
  background: #1de1d1;
  color: #000;
  border-radius: 4px;
  padding: 0 2px;
  margin-right: 2px;
}

.lineup-tab-contents {
  border: 1px solid #1de1d1;
  border-radius: 0 4px 4px 4px;
  background: #111;
  padding: 10px;
}

.lineup-tab-content {
  display: none;
}

#SimpleOptimizerResults .lineup-card {
  background: #222;
  border: 1px solid #1de1d1;
  border-radius: 4px;
  padding: 8px;
  width: calc(50% - 10px);
  box-sizing: border-box;
}

@media (max-width: 768px) {
  #SimpleOptimizerResults .lineup-card {
    width: 100%;
  }
}

#SimpleOptimizerResults .lineup-card h4 {
  margin: 0 0 8px;
  color: #1de1d1;
  text-align: center;
}
