.container {
  display: flex;
  flex-wrap: wrap;
}

.left-container,
.right-container {
  width: 50%;
  box-sizing: border-box;
  padding: 0 10px;
}

@media (max-width: 768px) {
  .left-container,
  .right-container {
    width: 100%;
    padding: 0;
  }
}

.input-label {
  background-color: #273044;
  color: white;
  padding: 8px;
  margin-bottom:8px;
  border: none;
 
}

.input-field {
  border: none;
  font-weight: bold;
  padding: 8px;
  margin-bottom:8px;
  background-color: #2C75E4;
  color: white;
  max-width: 150px;
  text-align:center;
  border-radius: 50px; /* Rounded edges */
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
  
  .input-field {
    width: 100%;
  }
}

.input-container {
  margin-bottom: 15px;
  padding:10px;
  border-bottom: 3px double black;
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
}

td {
  min-height: 75px;
  min-width: 40px;
  border: 1px solid white;
  padding: 10px;
  text-align: center;
  color: white; /* Change text color to white */
}

#a4,#b4,#c4,#e4,#f4,#g4 {
  background-color: rgba(204, 50, 50, 0.9); /* Change background of a2 cell to brown */
}

#d1,#d2,#d3,#d5,#d6,#d7 {
  background-color: rgba(204, 50, 50, 0.9); /* Change background of a2 cell to brown */
}

#a1,#b2,#c3,#c5,#b6,#a7 {
  background-color: #273044; /* Change background of b3 cell to red */
}

#e3,#f2,#g1,#e5,#f6,#g7 {
  background-color: #273044; /* Change background of b3 cell to red */
}

table.buy_levels,
table.sell_levels,
table.snr_levels{
  border-collapse: collapse;
	margin: 10px;
}

table.buy_levels th,
table.sell_levels th,
table.snr_levels th{
  padding: 4px 8px;
  border: 1px solid white;
	font-weight: normal;
  color: white; 
  background-color: #273044;
  
}

table.buy_levels td,
table.sell_levels td,
table.snr_levels td {
  min-height: 75px;
  min-width: 40px;
  padding: 4px 10px;
	font-weight: normal;
	background-color: rgba(204, 50, 50, 0.9);
}

.right-aligned-link {
  color: rgba(204, 50, 50, 0.9);
  float: left;
}
