/* dsp.css - Display/Responsive Controls for Tables */

.pool-info-row {
/*  display: flex; */
  justify-content: space-between; /* pushes text left, buttons right */
  align-items: flex-start; /* align to top; use center if you prefer */
  flex-wrap: wrap; /* makes it responsive on small screens */
  gap: 1rem;
}

.pool-info-text {
  flex: 1 1 60%; /* grow, shrink, and take ~60% width */
  min-width: 250px;
}

.pool-info-buttons {
  display: flex;
  flex-direction: column; /* stack buttons vertically */
  align-items: flex-start;
  gap: 0.5rem;
}

.sticky-header th {
  position: sticky;
  top: 0;
  z-index: 10;
}

.team-cell {
  position: relative;
  background-color: white;
  height: 80px;
  text-align: center;
  vertical-align: bottom;
  font-weight: bold;
  overflow: hidden;
  font-size: 0.8em;
}

.team-cell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: var(--bg-image);
  opacity: 1.0;
  z-index: 1;
}

.team-cell span {
  position: relative;
  z-index: 2;
}

