.container {
  width: 100%;

  margin: 0 auto;
  font-family: "Roboto Condensed", sans-serif;
  color: #fff;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2c3e50;
  padding: 6px 8px;
  /* margin-bottom: 0.5rem; */

}

.dolidanaText {
  background-color: #2c3e50;
  color: #fff;
  padding: 5px 12px;
  font-size: 14px;
  font-weight: bold;
  border-bottom: 1px solid #3e5871;
}

@media (max-width: 768px) {
  .dolidanaText {
    display: none;
  }
}

.title {
  font-size: 15px;
  font-weight: bold;
  margin: 0;
  text-transform: uppercase;
}

.datetime {
  font-size: 15px;
  font-weight: bold;
}

.section {
  /* margin-bottom: 0.5rem; */
}

.sectionHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2c3e50d9;
  padding: 5px 15px;

}

.sectionTitle {
  font-size: 14px;
  font-weight: bold;
}

.cashoutContainer {
  display: flex;
  align-items: center;
}

.cashoutButton {
  background-color: #27ae60;
  color: white;
  border: none;

  padding: 5px 8px;
  cursor: pointer;
  font-size: 14px;
}

.tableContainer {
  width: 100%;
  overflow-x: auto;
}

.oddsTable,
.normalTable {
  width: 100%;
  border-collapse: collapse;
}

.oddsTable th,
.normalTable th,
.normalTable td {
  padding: 0px;

  border: 1px solid #ddd;

}

.oddsTable th {}

.oddsTable td {


  border: 1px solid #ddd;
}

.oddsTable th {
  background-color: #f5f5f5;
  color: #333;
  border: none;
}

.teamColumn {
  text-align: left;
  width: 58.5%;
  background-color: #f5f5f5;
  color: #333;
}

.teamName {
  text-align: left;
  background-color: #f5f5f5;
  color: #333;
  font-weight: bold;

}

.bold {
  font-weight: bold;
}

.backColumn {
  background-color: #75bcff;
  color: #333;
  text-align: center;
  min-width: 2rem;
}

.back1 {
  background-color: #75bcff;
  text-align: center;
}

.back2 {
  background-color: #8ecaff;
  text-align: center;
}

.back3 {
  background-color: #75bcff;
  text-align: center;
}

.layColumn {
  background-color: #ffb6c1;
  color: #333;
  text-align: center;
  min-width: 2rem;
}

.lay1 {
  background-color: #ffb6c1;
  text-align: center;
}

.lay2 {
  background-color: #ffa6b5;
  text-align: center;
}

.lay3 {
  background-color: #ff96a8;
  text-align: center;
}

.smallText {
  font-size: 12px;
  color: #555;
  font-weight: 400;
}

.infoContainer {
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
  /* margin-top: -0.5rem;
  margin-bottom: 0.5rem; */
  background-color: #f2f2f2;
  padding: 0 5px;
}

.exchangeInfo {
  color: #097c93;
  /* font-weight: bold; */
  font-size: 12px;
  width: 100%;
  word-wrap: break-word;
}

.normalTable {
  table-layout: fixed;
}

.betTypeColumn {
  text-align: left;
  background-color: #f5f5f5;
  color: #333;
  width: 34%;
  font-size: 14px;
}

.noColumn {
  background-color: #faa9ba;
  color: #333;
  width: 8%;
  text-align: center;
}

.yesColumn {
  background-color: #72bbef;
  color: #333;
  width: 8%;

  text-align: center;
}

.minMaxColumn {
  background-color: #f5f5f5;
  color: #097c93;
  font-size: 12px;
  font-weight: bold;
  text-align: left;
  width: 10%;
  text-align: center;
}

.minMax {
  color: #097c93 !important;
  font-size: 12px;
  font-weight: bold;

}

.statusCell {
  background-color: #201e1e !important;
  color: #ff1212 !important;
  opacity: 0.8;
  text-align: center;
  font-weight: bold;
  font-size: 12px
}

.suspendedRow {
  background-color: #201e1e !important;
  color: #ff1212 !important;
  opacity: 0.8;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  height: 40px;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .suspendedRow {
    grid-column: 2 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border: none !important;
  }
}

/* Responsive styles */
@media (max-width: 992px) {
  .title {
    font-size: 14px;
  }

  .datetime {
    font-size: 14px;
  }

  .sectionTitle {
    font-size: 14px;
  }

  .cashoutButton {
    font-size: 12px;
    padding: 4px 10px;
  }
}

@media (max-width: 768px) {
  .header {
    display: none;
    /* flex-direction: column;
    align-items: flex-start; */
  }

  .sectionHeader {

    padding: 2px 7px;
  }

  .minMax {

    margin-left: 4px;
  }

  /* to prevent increase the height of the box when text size is large */
  .teamName {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    height: 2.7rem;
  }

  .datetime {
    margin-top: 5px;
  }

  .smallText {
    font-size: 11px;

  }

  .normalTable {
    display: block !important;
    width: 100%;
  }

  .normalTable tbody {
    display: block !important;
  }

  .normalTable tr {
    display: grid !important;
    grid-template-columns: 2.3fr 1fr 1fr;
    width: 100%;
    border-bottom: 1px solid #ddd;
  }

  .inningsTable tr {
    grid-template-columns: 4.3fr 1fr !important;
  }

  .normalTable td,
  .normalTable th {
    /* display: flex !important; */
    align-items: center;
    justify-content: center;
    width: auto !important;
    min-width: 0 !important;
    padding: 4px 2px !important;
    border: none !important;
    border-right: 1px solid #ddd !important;
  }

  .normalTable td:last-child,
  .normalTable th:last-child {
    border-right: none !important;
  }

  .betTypeColumn {
    justify-content: flex-start !important;
    padding-left: 8px !important;
    white-space: normal !important;
    word-break: break-word;
    font-size: 13px !important;
  }

  .yesColumn,
  .noColumn,
  .backColumn,
  .layColumn {
    font-weight: bold;
    font-size: 15px;
    line-height: 1.2;
    padding: 5px 0;
  }

  .oddsTable {
    display: block !important;
    width: 100%;
  }

  .oddsTable thead,
  .oddsTable tbody {
    display: block !important;
  }

  .oddsTable tr {
    display: grid !important;
    width: 100%;
    border-bottom: 0.5px solid #ddd;
  }

  .oddsTable td,
  .oddsTable th {
    /* display: flex !important; */
    align-items: center;
    justify-content: center;
    width: auto !important;
    min-width: 0 !important;
    padding: 0 !important;
    border: none !important;
    /* border-right: 1px solid #ddd !important; */
  }

  .oddsTable td:last-child,
  .oddsTable th:last-child {
    border-right: none !important;
  }
}

/* Team Name and P/L Layout */
.teamNameContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.teamNameText {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.plValue {
  font-size: 10px;
  font-weight: bold;
  margin-left: 8px;
  white-space: nowrap;
}

.plPositive {
  color: #086f3f;
}

.plNegative {
  color: #ff0000;
}

@media (max-width: 768px) {
  .teamNameContainer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 3px;
  }

  .plValue {
    margin-left: 0;
    margin-top: 2px;
    font-size: 10px;
  }

  .teamNameText {
    font-size: 13px;
    width: 100%;
  }
}

.blink {
  background-color: #fdcf13 !important;
  color: #000 !important;
  transition: background-color 0.2s ease;
}