/* Main Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Roboto Condensed', sans-serif; /* Condensed often looks closer to gambling UIs */
  background-color: white;
  border: 1px solid #dcdcdc;
}

/* Top Row: Player A / Player B */
.topRow {
  display: flex;
  width: 100%;
  border-bottom: 2px solid #ccc;
}

.playerBlock {
  flex: 1; /* 50% width on desktop */
  display: flex;
  border-right: 1px solid #ccc;
}
.playerBlockRight {
  border-right: none;
}

.playerLabel {
  flex: 1;
  background-color: #f3f4f6;
  padding: 8px 12px;
  font-weight: 700;
  color: #333;
  display: flex;
  align-items: center;
  font-size: 0.95rem; /* Slightly smaller font */
}

.oddsContainer {
  display: flex;
  width: 140px; /* Fixed width for odds part, or percentage if preferred */
  min-width: 120px;
}

/* Bottom Row: 7/High/Low & Cards/Odds */
.bottomRow {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #ccc;
}

/* Seven Section (Left Bottom) */
.sevenSection {
  flex: 1; /* 50% width */
  border-right: 1px solid #ccc;
  padding: 5px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sevenContent {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 450px;
  position: relative;
  border: 1px solid #5aa5e6;
  margin: 5px; /* Reduced margin */
  height: 48px; /* Reduced height from 60px */
  background: #f0f8ff;
}

.lowHighBox {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  height: 100%;
}
.lowHighBox:hover {
  background-color: #e6f3ff;
}

.lhValue {
  font-weight: 700;
  font-size: 1.1rem;
  color: #000;
}
.lhLabel {
  font-size: 0.75rem;
  color: #555;
  text-transform: uppercase;
}

.sevenIconContainer {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.sevenCircle {
  width: 46px; /* Reduced from 58px */
  height: 46px;
  background-color: #ffc107;
  border-radius: 50%;
  border: 2px solid white;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.sevenText {
  color: #8b0000;
  font-size: 1.8rem; /* Reduced from 2.2rem */
  font-weight: 900;
  margin-top: -2px;
}

/* Cards Section (Right Bottom) */
.cardsSection {
  flex: 1; /* 50% width */
  display: flex;
  background-color: #f3f4f6;
}

.cardsDisplay {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 10px;
  background-color: #f3f4f6;
}

.cardImg {
  width: auto;
  height: 40px; /* Reduced from 48px */
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
  object-fit: contain;
  background: white;
}

/* Reuse odds container styles for cards section right side */
.cardsSection .oddsContainer {
  /* Inherits width from above */
  background: white; /* Ensure odds stand out */
}

/* Bet Boxes & Lock */
.betBox {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
}
.blueValue {
  background-color: #72bbef;
  color: #1a1a1a;
  border-left: 1px solid #ccc;
}
.pinkValue {
  background-color: #f48fb1;
  color: #1a1a1a;
  border-left: 1px solid #ccc;
}

.lockBox {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #4a5568; /* Dark grey */
  color: #a0aec0; /* Lighter lock icon? Or white */
  border-left: 1px solid #555;
}

/* Info Bar */
.infoBar {
  background-color: #fff;
  color: #0d9488; /* Match the teal color in screenshot "IT'S EITHER..." likely teal/green */
  padding: 8px;
  text-align: right;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .topRow {
    flex-direction: column;
  }
  .playerBlock {
    border-right: none;
    border-bottom: 1px solid #eee;
  }
  
  .bottomRow {
    flex-direction: column;
  }
  .sevenSection {
    border-right: none;
    border-bottom: 1px solid #eee;
  }
  
  .playerLabel {
    padding: 10px;
    font-size: 0.9rem;
  }
  
  .sevenContent {
    margin: 5px 0;
    max-width: 100%;
  }
  
  .cardsSection {
    background: white;
  }
  
  .cardsDisplay {
    background: #f3f4f6;
    justify-content: flex-start; /* Align left on mobile? Or keep center */
  }
}