/* 모든 포커스 아웃라인 제거 */
*:focus,
*:focus-visible,
*:focus-within {
  outline: none !important;
  box-shadow: none !important;
}

/* 버튼 포커스 제거 */
button:focus,
button:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* 입력 필드 포커스 제거 */
input:focus,
textarea:focus,
select:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* 링크 포커스 제거 */
a:focus,
a:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* 기타 인터랙티브 요소 */
[tabindex]:focus,
[contenteditable]:focus {
  outline: none !important;
  box-shadow: none !important;
}


/* KRDS 체크박스, 라디오버튼 포커스 제거 */
.krds-form-check input[type=radio]:focus ~ label,
.krds-form-check input[type=checkbox]:focus ~ label {
  box-shadow: none !important;
  outline: none !important;
  outline-offset: 0 !important;
}
