.default-value {
    color: #6c757d; /* Muted Bootstrap gray */
}

select.default-value option {
    color: initial; /* Prevent gray text inside dropdowns */
}

/* style.css */

/* Override Bootstrap's outline-secondary to use Art-C gold */
.btn-outline-secondary {
  color: #e0b566;
  border-color: #e0b566;
  border-radius: 2rem; /* optional if you want pill-like shape everywhere */
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
  color: #ffffff;           /* white text */
  background-color: #e0b566; /* gold background */
  border-color: #e0b566;
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  color: #7a6a45;           /* muted gold */
  border-color: #7a6a45;
  background-color: transparent;
}

.insecure-banner {
  background: #ffeb3b; /* bright yellow */
  color: #000; /* black text */
  border: 1px solid #d32f2f; /* punchy red border */
  border-left: 4px solid #d32f2f;
  border-right: 4px solid #d32f2f;
  padding: 0.6rem 1rem;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.4);
}
