/* Dark theme form fixes */
body.dark .form-control,
body.dark .form-select,
body.dark textarea {
    background-color: #2e2e2e;
    color: #f1f1f1;
    border-color: #444;
}

body.dark .form-control::placeholder {
    color: #aaa;
    opacity: 1;
}

body.dark .form-control:focus,
body.dark .form-select:focus {
    background-color: #2e2e2e;
    color: #fff;
    border-color: #666;
    box-shadow: none;
}

.brand-item {
    padding: 1rem;
    border: 1px solid #444;
    background: #212529;
    border-radius: 6px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  color: #fff;
  padding: 15px 20px;
  display: none;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  z-index: 9999;
}

.cookie-banner a {
  color: #4da3ff;
  text-decoration: underline;
}

.cookie-banner button {
  background: #4da3ff;
  border: none;
  color: #fff;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 4px;
}

.cookie-banner button:hover {
  background: #2f86e0;
}
