.my-container {
    display: flex;
}

.my-menu {
    width: 100px;
    background-color: #f0f0f0;
}

.my-menu ul {
    list-style-type: none;
    padding: 0;
}

.my-menu li {
    padding: 10px;
}

.my-menu a {
    text-decoration: none;
    color: #333;
}

.my-content {
    flex-grow: 1;
    padding: 20px;
    background-color: #fff;
}

.menu-content {
    display: none;
}

.fast-broker-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    width: 98%;
    height: 30vh;
}

.left-column {
background-color: lightgray;
}

.middle-column {
  background-color: lightblue;
}

.account-info-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.account-info-container h2 {
  margin: 0;
}

#update_portfolio_btn {
  padding: 8px 16px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-left: auto;
}

#update_orderlist_btn {
  padding: 8px 16px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-left: auto;
}

.info-line {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.info-line span {
  margin-right: 10px;
}

.right-column {
  background-color: lightgreen;
}

.order-form {
  margin-bottom: 20px;
}

.order-form h2 {
  margin: 0;
}

.input-group {
  margin-bottom: 10px;
}

.input-group label {
  display: block;
  margin-bottom: 5px;
}

.input-group input {
  width: 90%;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.button-group {
  display: flex;
  justify-content: space-between;
}

.button-group button {
  padding: 8px 15px;
  font-size: 16px;
  border: none;
  border-radius: 3px;
  background-color: #4CAF50;
  color: #fff;
  cursor: pointer;
}

.button-group button:hover {
  background-color: #45a049;
}

.button-group button:nth-child(1) {
  background-color: #FF0000;
}

.option-buttons {
  display: flex;
  justify-content: space-between;
}

.option-buttons button {
  padding: 8px 15px;
  font-size: 16px;
  border: none;
  border-radius: 3px;
  background-color: #4CAF50;
  color: #fff;
  cursor: pointer;
}
.option-buttons button.put {
  background-color:  #FF0000; 
}

.option-buttons button.call.active {
  background-color: #0c4224; /* Light Green */
}

.option-buttons button.put.active {
  background-color: #7a200d; /* Tomato */
}


.switch-container {
    display: flex;
    flex-direction: column;
  }
  
.switch {
  position: relative;
  width: 52px;
  height: 34px;
  margin-bottom: 10px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #b41919;
  border-radius: 34px;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  border-radius: 50%;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #1b9b37;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.label-text {
  margin-left: 10px;
}
  

  #data-table {
    border-collapse: collapse;
    width: 100%;
  }
  
  #data-table th,
  #data-table td {
    border: 1px solid black;
    padding: 8px;
  }
  
  #data-table th {
    background-color: lightgray;
  }
  
  #data-body tr:nth-child(even) {
    background-color: lightblue;
  }
  
  #data-table {
    border-collapse: collapse;
    width: 100%;
  }
  
  #data-table th,
  #data-table td {
    border: 1px solid black;
    padding: 8px;
  }
  
  #data-table th {
    background-color: lightgray;
  }
  
  #data-body tr:nth-child(even) {
    background-color: lightblue;
  }
  

.portfolio-container {
  margin-top: 20px;
}

#portfolio-table {
  width: 100%;
  border-collapse: collapse;
}

#portfolio-table th,
#portfolio-table td {
  border: 1px solid #ccc;
  padding: 8px;
}

#portfolio-table th {
  background-color: lightgray;
}

#portfolio-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

#orderlist_table {
  width: 100%;
  border-collapse: collapse;
}

#orderlist_table th,
#orderlist_table td {
  border: 1px solid #ccc;
  padding: 8px;
}

#orderlist_table th {
  background-color: lightgray;
}

#orderlist_table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}



