  /* TradingView Widget Container Styles */
  #tradingViewWidget {
    position: relative;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
  }
  
  #chartContainer {
    position: absolute;
    top: 60px;
    left: 100px;
    right: 535px;
    bottom: 0px;
    background-size: cover;      
    background-position: center;  
    background-repeat: no-repeat; 
    overflow: hidden;
  }

  #chartContainer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
  }

  #tradingViewWidget {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
  }

  :root {
    --primary: #00e5ff;
    --primary-gradient: linear-gradient(90deg, #00e5ff, #0077ff);
  }

  #forexControls {
    position: fixed;
    top: 60px;
    left: 100px;
    z-index: 9999;
    background: rgba(15, 20, 30, 0.85);
    padding: 2px 18px;
    border-radius: 12px;
    border: 1px solid rgba(0, 229, 255, 0.25);
    color: #e0e0e0;
    font-family: "Inter", Arial, sans-serif;
    display: flex;
    gap: 14px;
    align-items: center;
    box-shadow: 0 4px 16px rgba(0, 229, 255, 0.08);
    backdrop-filter: blur(6px);
  }

  #forexControls label {
    font-size: 14px;
    font-weight: 500;
    color: #b8b8b8;
  }

  #forexControls select,
  #forexControls button {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 14px;
    transition: all 0.25s ease-in-out;
  }

  #forexControls select:hover,
  #forexControls button:hover {
    background: rgba(0, 229, 255, 0.15);
    border-color: rgba(0, 229, 255, 0.6);
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.2);
  }

  #forexControls button {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    background-image: var(--primary-gradient);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 6px 14px;
  }

  #forexControls button:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
  }
#forexControls select {
  background: rgba(0, 0, 0, 0.8) !important;
  color: var(--primary) !important;
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 14px;
  transition: all 0.25s ease-in-out;
}

#forexControls select:hover {
  background: rgba(0, 229, 255, 0.15) !important; /* Light blue hover like before */
  border-color: rgba(0, 229, 255, 0.6);
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.2);
}

#forexControls select option {
  background: #1a1a1a;
  color: var(--primary);
}

#forexControls select:focus {
  background: rgba(0, 0, 0, 0.9) !important;
  border-color: rgba(0, 229, 255, 0.6);
  outline: none;
}
  .hidden {
    display: none !important;
  }

  