.betTableContainer {
    width: 100%;
   
    margin: 0 auto;
    background-color: #f5f5f5;
    font-family: Arial, sans-serif;
  }
  
  /* Top Section */
  .topSection {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    margin-bottom: 10px;
  }
  
  .playerColumn {
    flex: 1;
    display: flex;
   
  }
  
  .playerLabel {
    padding: 12px;
    background-color: #f0f0f0;
    font-weight: bold;
    color: #333;
    border: 1px solid #e0e0e0;
    width: 100%;
  }
  
  .oddsContainer {
    display: flex;
  }
  
  .backOdds,
  .layOdds {
    flex: 1;
    padding: 12px;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    width: 5.5rem;
  }
  
  .backOdds {
    background-color: #7fc1e8; /* Light blue */
  }
  
  .layOdds {
    background-color: #ffb6c1; /* Light pink */
  }
  
  /* Bottom Section */
  .bottomSection {
    display: flex;
    justify-content: space-between;
    gap: 5px;
  }
  
  .betBox {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    border: 1px solid #7fc1e8; /* Light blue border */
    background-color: #f9f9f9;
    border-radius: 2px;
  }
  
  .betOption {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  
  .oddsValue {
    font-size: 18px;
    font-weight: bold;
  }
  
  .direction {
    font-size: 14px;
    color: #666;
  }
  
  .sevenIconContainer {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .sevenIcon {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  /* Fallback icon in case image fails to load */
  .fallbackIcon {
    width: 60px;
    height: 60px;
    background-color: #ffd700; /* Yellow */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  
  .fallbackIcon::after {
    content: "7";
    font-size: 30px;
    font-weight: bold;
    color: #cc0000; /* Red */
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .topSection {
      flex-direction: column;
    }
  
    .bottomSection {
      flex-direction: column;
    }
  
    .betBox {
      margin-bottom: 10px;
    }
  }
  
  @media (max-width: 480px) {
    .playerLabel,
    .backOdds,
    .layOdds {
      padding: 8px;
      font-size: 16px;
    }
  
    .oddsValue {
      font-size: 16px;
    }
  
    .direction {
      font-size: 12px;
    }
  
    .sevenIconContainer {
      width: 50px;
      height: 50px;
    }
  }
  
  