.container {
  width: 100%;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  background-color: var(--bg-table);
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.sessionSection,
.judgementSection,
.colorSection,
.handSection {
  flex: 1;
  min-width: 150px;
  margin: 2px;
  background-color: white;
  border-radius: 2px;
  overflow: hidden;
}

.sectionHeader {
  padding: 8px;
  /* background-color: #f0f0f0; */
  background-color: var(--bg-table);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: #333;
  font-size: 14px;
}

.infoIcon {
  margin-left: 5px;
  color: #555;
  font-size: 14px;
}

.oddsRow {
  display: flex;
  height: 50px;
  gap: 6px;
}

.blueOdds,
.pinkOdds {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  position: relative;
}

.oddsValue {
  display: block;
  line-height: 1;
}

.blueOdds {
  background-color: #7fc4e8;
}

.pinkOdds {
  background-color: #ffb6c1;
}

.mainValue {
  font-size: 20px;
  font-weight: bold;
}

.subValue {
  font-size: 12px;
  margin-top: 2px;
}

.singleOdds {
  height: 50px;
  background-color: #7fc4e8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  position: relative;
}

/* ✅ Mobile Responsive Layout */
@media (max-width: 480px) {
  .sectionHeader {
    font-size: 12px;
    padding: 5px;
  }

  .blueOdds,
  .pinkOdds,
  .singleOdds {
    font-size: 16px;
    height: 40px;
  }

  .mainValue {
    font-size: 16px;
  }

  .subValue {
    font-size: 10px;
  }

  .row {
    flex-wrap: wrap;
    margin-bottom: 10px;
  }

  /* ✅ Top row: 3 sections per row */
  .sessionSection,
  .judgementSection {
    width: calc(33.3% - 4px);
    margin: 2px;
  }

  /* ✅ Middle row: 2 sections per row */
  .colorSection {
    width: calc(50% - 4px);
    margin: 2px;
  }

  /* ✅ Bottom row: 3 in first row, 2 in second */
  .handSection:nth-child(-n+3) {
    width: calc(33.33% - 4px);
    margin: 2px;
  }

  .handSection:nth-child(n+4) {
    width: calc(50% - 4px);
    margin: 2px;
  }
}
.lockedCell {
  position: relative;
  cursor: not-allowed;
  background-color: #3a4a5d !important;
}

.lockedCell::before {
  content: "";
  background-image: url(../../../assets/img/lock.svg);
  background-size: 17px 17px;
  filter: invert(1);
  -webkit-filter: invert(1);
  background-repeat: no-repeat;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  pointer-events: none;
}

.lockedCell::after {
  content: "";
  background-color: #373636d6;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  cursor: not-allowed;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

/* Exposure */
.exposure {
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
  margin-top: 2px;
  display: block;
  text-align: center;
  z-index: 2;
  position: relative;
}

.exposureLocked {
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
  margin-top: 2px;
  display: block;
  text-align: center;
  z-index: 10;
  position: relative;
  pointer-events: none;
}
