#container {
  display: flex;
  align-items: flex-start;
  /* This aligns the items to the start of the flex container */
}

#main-content {
  flex: 1;
}

#side-bar {
  flex: 0 0 210px;
  font-weight: 600;
  font-size: 18px;
  margin-right: 5px;
}

#odds-body {
  font-family: Arial, sans-serif;
  margin-left: 0;
}

/* Search bar */
#searchInput {
  width: 302px;
  font-size: 12pt;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: white;
  background-color: black;
}

#searchInput:focus {
  background-color: black !important;
}

#search-container {
  margin-left: 0;
  position: relative;
  width: 300px;
}

#suggestions {
  position: absolute;
  width: 100%;
  border: 1px solid #ccc;
  max-height: 150px;
  overflow-y: auto;
}

.suggestion-item {
  padding: 10px;
  cursor: pointer;
  background-color: black;
}

.suggestion-item:hover {
  background-color: rgb(14, 13, 13);
}


/* Side bar */
#bet-type-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#bet-type-list li {
  cursor: pointer;
  padding: 5px;
}

#bet-type-list li:hover {
  color: gray;
}

#bet-type-list li.selected {
  color: #07fc03;
  position: relative;
}

#bet-type-list li.selected::after {
  content: '⬅';
  position: absolute;
  right: 10px;
  color: white;
}

h2 {
  margin-bottom: 5px;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.bet-item {
  display: flex;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #f0f0f0;
  /* Optional: to separate items */
}

.bookmaker-logo {
  width: 100px;
  /* Adjust as needed */
  height: 50px;
  /* Adjust as needed */
  margin-right: 20px;
  /* Adjust as needed */
  border-radius: 5px;
  /* Optional: for rounded corners */
}

.bookmaker-name {
  flex: 1;
  margin-right: 10px;
  /* Adjust as needed */
}

.bookmaker-name a {
  text-decoration: none !important;
  /* Adjust as needed */
  font-weight: bold;
  /* Adjust as needed */
  color: white;
}

.bet-grid {
  display: flex;
}

.bet-grid a {
  text-decoration: none !important;
}

.bet-a {
	text-decoration: none !important;
}

.bet-grid .bet {
  padding: 5px 10px;
  /* Adjust as needed */
  background-color: #f9f9f9;
  /* Adjust as needed */
  margin: 0 5px;
  /* Adjust as needed */
  border-radius: 5px !important;
  /* Optional: for rounded corners */
  color: #333;
  /* Adjust as needed */
}

.bet:hover {
  background-color: #e0e0e0;
}

.title-h2 {
  margin-bottom: 0 !important;
	color: white !important;
	font-size: 17pt !important;
}

.market-h2 {
	margin-top: 20px !important;
	margin-bottom: 0 !important;
	color: white !important;
	font-size: 17pt !important;
}

.choose-h3 {
  margin: 0;
  font-weight: 500;
  font-size: 12pt !important;
  color: white !important;
}