/* ===== セレクタ ===== */

select {
  font-size: 16px;
  padding: 8px 12px;
  min-width: 200px;
}

/* ===== ボタン ===== */

button#applyBtn {
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 6px;
  border: 1px solid #666;
  background: #f0f0f0;
  cursor: pointer;
}

button#applyBtn:hover {
  background: #e0e0e0;
}

/* ===== サンプルリンク ===== */

a.sample-link {
  color: blue;
  text-decoration: underline;
}

@media (max-width: 600px) {

  select {
    min-width: 100%;
    font-size: 16px;
  }

  button#applyBtn {
    width: 100%;
    font-size: 18px;
    padding: 12px 0;
  }
}

