.myBetsContainer {
  width: 100%;
  font-family: "Lato", Avenir, Verdana, Nunito, sans-serif;
}

.pageTitle {
  font-size: 18px;
  font-weight: bold !important;
  color: #000;
}

.mT20 {
  margin-top: 20px !important;
}

.pL15 {
  padding-left: 15px !important;
}

.toggleableListTitle {
  background: #0f2327;
  color: #fff;
  padding: 8px 16px;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.toggleableListTitle span {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  flex: 1;
}

.toggleIcon {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floatRight {
  float: none;
}

.mR10 {
  margin-right: 10px;
}

.mT10 {
  margin-top: 10px;
}

.events {
  /* background: #fff; */
  /* padding: 12px 16px; */
  color: #000;
  font-size: 12px;
  border-top: 1px solid #e5e7eb;
}

.collapse {
  display: none;
}

.collapseShow {
  display: block;
}

.message {
  /* padding: 12px 0; */
  color: #000;
  font-size: 12px;
}

.unmatchedBet,
.matchedBet {
  /* Additional styles if needed */
}


/* Add these styles to your existing MyBetsMobile.module.css */

/* Filter Section */
.filterSection {
  display: flex;
  gap: 10px;
  padding: 15px;
  background: #fff;
  margin-bottom: 10px;
}

.filterBtn {
  flex: 1;
  padding: 8px 16px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.filterBtn.active {
  background: #007bff;
  color: white;
  border-color: #007bff;
}

/* Loading Message */
.loadingMessage {
  text-align: center;
  padding: 20px;
  color: #666;
  font-size: 14px;
}

/* Bets List */
.betsList {
  list-style: none;
  padding: 0;
  margin: 0;
}

.betListItem {
  background-color: #fff;
  margin: 0;
  margin-bottom: 5px;
  position: relative;
  padding: 16px 12px;
  /* border-bottom: 1px solid #e5e7eb; */
}

.betListItem:last-child {
  border-bottom: none;
}

.betListItem > div:first-child {
  margin-bottom: 8px;
}

.betListItem a {
  text-decoration: none;
  display: block;
  font-size: 14px;
  font-weight: 500;
}

.betListItem a u {
  text-decoration: underline;
}

.betListItem a span {
  display: block;
}

/* Lay Bet (No/Lay) - Pink/Red */
.layBet {
  color: #ff6699;
}

/* Back Bet (Yes/Back) - Blue */
.backBet {
  color: #72bbef;
}

/* Bet Details */
.betDetails {
  display: flex;
  flex-direction: column;
  /* gap: 4px; */
  font-size: 13px;
  color: #000;
}

.betDetails div {
  line-height: 1.4;
}

.betDetails b {
  font-weight: 600;
}

.betDetails span {
  font-weight: normal;
}
