/* General box styling */
.login-container {
  background: rgba(0, 0, 0, 0.8);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 165, 0, 0.3);
}

/* Input fields */
input {
  font-size: 14px;
  border: 1px solid #444;
  transition: border 0.3s ease;
}
input:focus {
  border-color: darkorange;
  outline: none;
}

/* Button */
.cta {
  background: linear-gradient(to right, darkorange, orange);
  transition: background 0.3s ease, transform 0.2s;
}
.cta:hover {
  background: orange;
  transform: scale(1.03);
}

/* Dashboard chart container */
#main-layout {
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

body, html {
  background-color: #0a0a0a !important;
  color: #f5c16c;
  margin: 0;
  padding: 0;
  height: 100%;
}

/* ——— Force black text inside ALL dcc.Dropdown components ——— */
.Select-control,
.Select-placeholder,
.Select-menu-outer,
.Select-menu,
.VirtualizedSelectOption,
.Select-value-label,
.is-selected > .VirtualizedSelectOption {
    color: #000 !important;         /* black */
}

/* Mobile scanner & layout tweaks */
@media only screen and (max-width: 768px) {
  #scanner-output-panel {
    width: 100% !important;
    height: auto !important;
    max-height: 240px !important;
    font-size: 13px !important;
    padding: 8px !important;
  }

  #crypto-controls {
    flex-direction: column !important;
    gap: 16px !important;
    align-items: stretch;
  }

  #crypto-controls > div {
    width: 100% !important;
  }

  .dash-button {
    font-size: 13px !important;
    white-space: normal !important;
    line-height: 1.4;
  }
}

