/**
 * J-Components Global Utilities
 * 
 * 이 파일은 src/index.ts에서 자동으로 import됩니다.
 * 사용자는 별도로 import할 필요가 없습니다.
 */

/* ========================================
   패턴 8: Input 향상
   ======================================== */

/* 모든 input, textarea, select 요소에 자동 적용 */
/* checkbox, radio는 제외 (별도 디자인) */

input:not([type="checkbox"]):not([type="radio"]):focus,
textarea:focus,
select:focus {
  outline: 2px solid hsl(var(--primary));
  outline-offset: 1px;
  border-color: hsl(var(--primary));
}

input:not([type="checkbox"]):not([type="radio"]):hover:not(:focus),
textarea:hover:not(:focus),
select:hover:not(:focus) {
  border-color: hsl(var(--primary) / 0.5);
}

input:not([type="checkbox"]):not([type="radio"]):disabled,
textarea:disabled,
select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
