@charset "utf-8";

/* =========================================================
   daisyui 테마 디자인 CSS — 깔끔/기본(미니멀) 톤
   - daisyUI + Tailwind 로 대부분 처리하므로 최소만 둔다.
   - 시맨틱 컬러(base/primary/...)만 사용. 브랜드 팔레트 하드코딩 없음.
   - 디자인 전용 추가 스타일이 필요하면 여기에만 작성.
   ========================================================= */

a { text-decoration: none; }

/* 앵커(#) 이동 시 sticky 헤더에 가려지지 않도록 + 부드러운 스크롤 */
html { scroll-padding-top: 5rem; scroll-behavior: smooth; }

/* 버튼 입체감(depth) 제거 → 단독 버튼·join 그룹 모두 평면(이음선 없음) */
:root { --depth: 0; }

/* error 색 보정: daisyUI light 기본은 연한 빨강+어두운 글자라 가독성 낮음 → 진한 빨강+흰 글자 */
:root {
	--color-error: oklch(58% .22 25);
	--color-error-content: oklch(100% 0 0);
}

/* success 색 보정: 어두운 초록 배경 + 밝은(흰) 글자 → badge-success/btn-success 등에 일괄 적용 */
:root {
	--color-success: oklch(55% .17 150);       /* 배경: 진한 초록 */
	--color-success-content: oklch(100% 0 0);  /* 글자: 흰색 */
}
