/* Overall wrapper */
.dt-bracket-wrap {
  margin: 20px 0;
}

/* Horizontal scroll for large brackets */
.dt-bracket-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 10px 6px 14px 6px;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  background: #fafafa;
}

/* Each round column */
.dt-round {
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dt-round-title {
  font-weight: 700;
  font-size: 16px;
  padding: 8px 10px;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  background: #fff;
}

/* Matchup card */
.dt-matchup {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  background: #fff;
}

/* Pick buttons */
.dt-pick {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  background: #fff;
  padding: 8px 10px;
  cursor: pointer;
}

.dt-pick:hover {
  border-color: #cfcfcf;
}

.dt-img {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dt-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dt-name {
  font-size: 14px;
  line-height: 1.2;
}

/* "vs" separator */
.dt-vs {
  text-align: center;
  font-size: 12px;
  opacity: 0.6;
}

/* Selected styling */
.dt-pick.dt-selected {
  border-color: #bdbdbd;
}

.dt-pick.dt-winner {
  border-width: 2px;
}

/* When slot is TBD, it still looks like a card but you can't meaningfully pick it */
.dt-pick .dt-name:empty::after {
  content: "TBD";
  opacity: 0.6;
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .dt-round { min-width: 220px; }
  .dt-pick { grid-template-columns: 46px 1fr; }
  .dt-img { width: 46px; height: 46px; }
}