/* Search panel — slides down from header when the search button is clicked */
.dt-search {
  background: transparent;
  cursor: pointer;
  font: inherit;
}
.dt-search-panel {
  background: #ffffff;
  border-bottom: 1px solid #e6e6e6;
  padding: 0.75rem clamp(1rem, 4vw, 2rem);
  transition: opacity 0.15s ease;
}
.dt-search-panel[hidden] { display: none; }
.dt-search-form {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.dt-search-form input[type="search"] {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #d0d0d0;
  border-radius: 999px;
  outline: none;
  font-family: inherit;
}
.dt-search-form input[type="search"]:focus {
  border-color: #0c6b6b;
  box-shadow: 0 0 0 3px rgba(12, 107, 107, 0.12);
}
.dt-search-form button[type="submit"] {
  background: #0c6b6b;
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
}
.dt-search-form button[type="submit"]:hover { background: #0a5858; }
.dt-search-close {
  background: transparent;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  color: #666666;
  cursor: pointer;
  padding: 0 0.5rem;
}
.dt-search-close:hover { color: #111111; }
.dt-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
