/* Main Container */
.luckyTable15 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: bold;
  max-width: 100%;
  margin: 0 auto;
  background: white;
  border-top: 1px solid #d2d2d2;
}

/* Table Header */
.tableHeader {
  background-color: #505d6e;
  color: white;
  padding: 8px 10px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
}

/* Table Content */
.tableContent {
  display: flex;
  flex-direction: column;
  background: white;
}

/* Header Row */
.headerRow {
  display: flex;
  align-items: stretch;
  border-bottom: 2px solid #d2d2d2;
  background: #e2e8f0;
  height: 40px;
  /* Align height */
}

.emptyHeader {
  flex: 1;
  padding: 8px;
  background: #e2e8f0;
}

.backHeader {
  width: 120px;
  /* Fixed width for Back column */
  background-color: #72bbef;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}

/* Bet Row */
.betRow {
  display: flex;
  font-size: 14px;
  border-bottom: 1px solid #e5e7eb;
  cursor: pointer;
  align-items: stretch;
}

/* Bet Type */
.betType {
  flex: 1;
  /* Variable width */
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 500;
  color: #374151;
  padding: 10px 15px;
  border-right: 1px solid #d2d2d2;
}

/* Bet Cell (Back) */
.betCell {
  background: #72bbef;
  width: 120px;
  /* Match header width */
  text-align: center;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #d2d2d2;
  border-left: 1px solid #d2d2d2;
}

/* Odds */
.odds {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

/* Limit */
.limit {
  font-size: 0.75rem;
  color: #4b5563;
}

/* Re-enabling limit based on original screenshot showing 25000 under 3.88 */
.betCell .limit {
  display: block;
  margin-top: -4px;
  color: #333;
}


/* Min/Max */
.minMax {
  flex: 1;
  /* Fill remaining space on right if any, or fixed width */
  font-size: 0.75rem;
  color: #0d9488;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 15px;
  text-align: right;
  background: #f9fafb;
}

.min,
.max {
  white-space: nowrap;
  font-weight: 600;
}

/* Locked Cell */
.lockedCell {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .betType {
    padding: 8px 10px;
    font-size: 0.9rem;
    flex: 0.8;
  }

  .backHeader,
  .betCell {
    width: 100px;
  }

  .minMax {
    display: flex;
    flex: 0.8;
    padding: 0 5px;
    font-size: 0.7rem;
    align-items: flex-end;
  }

  .limit {
    font-size: 0.65rem;
  }
}