.sectionB {
  padding-left: 0.3rem;
  width: 100%;
  margin-left: auto;
  font-weight: bold;
  font-size: 14px;
  @media (max-width: 768px) {
    padding-left: 0;
  }
}
.actionButtons {
  display: flex;
  justify-content: end;
  width: 100%;
}

.section1 {
  display: flex;
  font-weight: 500;
  background-color: #2c3e50;
  color: white;
  justify-content: space-between;
  padding: 0.3rem 0.3rem;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  @media (max-width: 768px) {
    background-color: #0088cc;
  }
}

.smallText {
  font-size: 13px;
  @media (max-width: 768px) {
    display: none;
  }
}
.close {
  display: none;
  color: white;
  font-size: bold;
  cursor: pointer;
  @media (max-width: 768px) {
    display: block;
    
  }
}

.section2 {
  display: flex;
  background-color: #f7f7f7;
  padding: 0.3rem;
  font-weight: 500;
  justify-content: space-between;
}

.oddsText {
  position: relative;
  left: 31px;
}

.stakeText {
  position: relative;
  left: -6px;
  gap: 6px
}

.wrapper {
  background-color: #72bbef;
}

.section3 {
  display: flex;
  min-width: 10rem;
  height: 2.45rem;
  font-weight: 500;
  padding: 0.5rem;
  border-bottom: 1px solid rgb(212, 210, 210);
}

.playerText {
  width: 44%;
}

.stakeInput {
  width: 20%;
  height: 21px;
  border: none;
}

.oddsInput {
  width: 21%;
  margin-left: 10%;
  height: 21px;
  border: none;
}

.placeBetButtons {
  display: flex;
  background-color: #72bbef;
  flex-wrap: wrap;
  padding: 4px;
  gap: 2px;
  justify-content: flex-start;
}

.btn {
  border: none;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
}

.btnPlaceBet {
  width: 32.3%;
  /* width: calc(20% - 2px); */
  padding: 5px;
  background-color: var(--bg-sidebar, #f0f0f0);
  color: var(--text-sidebar, #000);
  border: 0;
  border-radius: 0;
}

.btnSm {
  font-size: 12px;
  padding: 4px 8px;
}

.btnLink {
  background: transparent;
  text-decoration: underline;
}

.textDark {
  color: #000;
}

.flexFill {
  flex: 1 1 auto;
}

.textEnd {
  text-align: right;
}

/* Legacy class for backward compatibility */
.section4 {
  display: flex;
  background-color: #72bbef;
  flex-wrap: wrap;
  padding: 4px;
  gap: 2px;
  justify-content: flex-start;
}

.oddsButton {
  width: calc(20% - 2px);
  padding: 5px;
  background-color: var(--bg-sidebar, #f0f0f0);
  color: var(--text-sidebar, #000);
  border: 0;
  border-radius: 0;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
}

.section5 {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0.2rem 0.5rem 0.3rem 0.5rem;
}

.editButton {
  width: 5rem;
  padding: 8px 0;
  font-weight: 500;
  color: white;
  text-align: center;
  margin: 0 0.1rem;
  background-color: #097c93;
  cursor: pointer;
}

.resetButton {
  width: 5rem;
  padding: 8px 0;
  font-weight: 500;
  color: white;
  text-align: center;
  margin: 0 0.1rem;
  background-color: #bd1828;
  cursor: pointer;
}

.submitButton {
  width: 5rem;
  padding: 8px 0;
  font-weight: 500;
  color: white;
  text-align: center;
  margin: 0 0.1rem;
  background-color: #38998a;
  cursor: pointer;
}