/* Target Bollinger Bands lines */
.highcharts-series-4 path,
.highcharts-series-5 path,
.highcharts-series-6 path {
  stroke: #ffd700 !important; /* Yellow color */
  stroke-width: 1.2px !important;
}

/* Target areas between bands */
.highcharts-series-4 path[class*="highcharts-area"],
.highcharts-series-5 path[class*="highcharts-area"],
.highcharts-series-6 path[class*="highcharts-area"] {
  fill: none !important;
}

/* Create specific areas from middle band */
.highcharts-series-5 path[class*="highcharts-area"] {
  fill: rgba(255, 215, 0, 0.15) !important;
}

/* Ensure middle band is on top */
.highcharts-series-5 {
  z-index: 3 !important;
}

/* Remove any unwanted fills */
.highcharts-series-4 .highcharts-area,
.highcharts-series-6 .highcharts-area {
  fill: none !important;
}

/* Override Toastify default styles */
.Toastify__toast {
  animation: toastLifecycle 1.5s ease-in-out forwards !important;
  transform: translateX(0) !important;
}

@keyframes toastLifecycle {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  5% {
    transform: translateX(0);
    opacity: 1;
  }
  90% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
    display: none;
  }
}

/* Disable all transitions */
.Toastify__toast-enter,
.Toastify__toast-exit,
.Toastify__toast-enter-active,
.Toastify__toast-exit-active {
  transition: none !important;
  animation: none !important;
}

/* Progress bar */
.Toastify__progress-bar {
  animation: progress 1.5s linear forwards !important;
}

@keyframes progress {
  from {
    width: 100%;
  }
  to {
    width: 0;
  }
}

/* Custom toast styles */
.customToastify-hef {
  display: flex;
  align-items: center;
  gap: 8px;
}

.customToastify-hef i {
  color: #4caf50;
}

/* Force hide after animation */
.Toastify__toast[aria-hidden="true"] {
  display: none !important;
}
