/* search-box.css */
.search-widget {
  /* 繼承 card 風格 */
  padding: 16px;
}

.search-widget .widget-title {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.search-widget .search-form {
  display: flex;
  gap: 8px;
}

.search-widget input {
  flex: 1;
  min-width: 0;
  padding: 8px;
}

.search-widget button {
  flex-shrink: 0;
  padding: 8px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-widget button svg {
  width: 20px;
  height: 20px;
  display: block;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}