input[type="number"],
input[type="text"],
select {
  appearance: none;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 1rem;
  width: 100%;
  background-color: #fff;
}

input:focus,
select:focus {
  border-color: #0073aa;
  box-shadow: 0 0 0 2px rgba(0,115,170,0.15);
  outline: none;
}

select {
  appearance: none;
  -webkit-appearance: none; /* iOS & Safari */
  -moz-appearance: none;    /* Firefox */
  color: #333;              /* 원하는 텍스트 색상 */
  background-color: #fff;
}

/* 포커스 시에도 색 유지 */
select:focus {
  color: #333;
  border-color: #0073aa;
  box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.15);
  outline: none;
}

/* 기본 스타일 */
input[type="date"],
input[type="month"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 10px 12px; /* 기존보다 위아래 padding 증가 */
  font-size: 0.9rem;
  font-family: var(--font-main);
  background-color: var(--color-bg-light);
  box-sizing: border-box;
  width: 100%;
  color: #333;
  line-height: 1.5;
  height: 34px; /* 명시적인 높이 */
}

/* 포커스 스타일 */
input[type="date"]:focus,
input[type="month"]:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(30,30,30,0.15);
  outline: none;
}

