:root{
  --cw-neon: rgba(56,189,248,.36);
  --cw-neon-weak: rgba(56,189,248,.14);
}

/* 필드(입력창) 가시성 */
input, select, textarea{
  border-color: var(--cw-neon) !important;
  box-shadow:
    inset 0 0 0 1px rgba(56,189,248,.12),
    0 0 10px var(--cw-neon-weak) !important;
}

/* 패널/카드/구분선 */
[class*="border-slate-800"],
[class*="border-slate-700"],
[class*="border-white/10"],
[class*="border-white/5"]{
  border-color: rgba(56,189,248,.26) !important;
}

/* 좌측 메뉴 버튼 가시성 */
aside button{
  border-color: rgba(56,189,248,.34) !important;
  box-shadow: 0 0 10px rgba(56,189,248,.12) !important;
}
aside button:hover{
  background-color: rgba(56,189,248,.10) !important;
}

/* 빨간 버튼(종료 등)은 기존 톤 유지 */
button[class*="bg-rose"], button[class*="bg-red"]{
  box-shadow: none !important;
}
