/* ✅ 검색 전체 영역 우측 정렬 + 여백 */
.search-wrapper {
  width: 220px;
  display: flex;
  justify-content: flex-end;
  margin: 16px 30px 4px auto;  /* 위-오른쪽-아래 마진 조절 */
}

/* ✅ 검색 폼 포지션 */
.search-form-icon-inside {
  position: relative;
  width: 100%;
}

/* ✅ 입력창 디자인 */
.search-form-icon-inside input[type="text"] {
  width: 100%;
  height: 42px;
  padding: 0 42px 0 14px;  /* 우측에 버튼 공간 확보 */
  border: 2px solid #00a0e9;
  border-radius: 50px;
  font-size: 14px;
  color: #0078b6;
  background-color: #fff;
  outline: none;
  box-sizing: border-box;
}

/* ✅ 내부 검색 버튼 (이미지 돋보기) */
.search-submit-btn {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 42px;
  height: 40px;
  background: url("/webgate/static/images/btn_search.png") no-repeat center;
  background-size: 24px 24px;
  border: none;
  cursor: pointer;
  padding: 0;
}
