.graph{
    border: 1px solid rgba(220, 133, 19, 1);
    border-radius: 12px;
    padding: 20px;
}
.chart-container {
  /* width: 400px;  */
  height: 300px;
  /* margin: auto; */
}

body {
  font-family: "Poppins", sans-serif;
}

.select-container {
  max-width: 300px;
  margin-bottom: 20px;
}

.select-label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.select-field {
  /* width: 100%; */
  padding: 10px 25px 10px 16px;
  border-radius: 20px;
  border: none;
  /* border: 1px solid #f8a538; */
  /* background-color: #d9d9d9; */
  background: #F8A5380D;

  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #f8a538;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f8a538' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 5px center;
  background-size: 16px;
  cursor: pointer;
  box-sizing: border-box;
}

.select-field:focus {
  outline: none;
  border-color: #f8a538;
  box-shadow: 0 0 0 2px rgba(248, 165, 56, 0.2);
}



.select-field option {
  padding: 10px;
}
.deficit{
  background: #FF666630;
  padding: 7px 14px;
  border-radius: 9px;
  color: #FF6666;
  display: flex;
  align-items: center;
  width: fit-content;


}
.gain{
  background: #0BC44A0F;
  padding: 7px 14px;
  border-radius: 9px;
  color: #0E9B4F;
  display: flex;
  align-items: center;
  width: fit-content;


}
.profit::before{
  content: url('./images/profit.svg'); /* Replace with the actual image path */
}
.loss::before{
  content: url('./images/loss.svg'); /* Replace with the actual image path */
}



