/* 브랜드 아이덴티티 컬러 (로고 추출 컬러) */
:root {
    --brand-blue: #0066B3;   /* Primary Blue - 신뢰의 블루 */
    --brand-blue-dark: #005798;
    --brand-blue-darker: #00477D;
    --brand-green: #1F9B48;  /* Primary Green - 활력의 그린 (아이콘/뱃지 전용, 흰 배경 텍스트 대비 부족) */
    --brand-green-text: #17803F; /* 텍스트/링크용 진한 그린 (WCAG AA 대비 확보) */
    --brand-gray: #707372;   /* Brand Gray */
    --brand-dark: #222222;   /* Brand Dark */
}

/* 기존 Tailwind blue/green 유틸리티 클래스를 브랜드 컬러로 통일 */
.text-blue-500,
.text-blue-600 {
    color: var(--brand-blue) !important;
}

.hover\:text-blue-600:hover {
    color: var(--brand-blue) !important;
}

.hover\:text-green-600:hover {
    color: var(--brand-green-text) !important;
}

.border-blue-200 {
    border-color: #BFD9EC !important;
}

.border-blue-600 {
    border-color: var(--brand-blue) !important;
}

.border-blue-800 {
    border-color: var(--brand-blue-darker) !important;
}

.bg-blue-50 {
    background-color: #F2F7FB !important;
}

.bg-blue-100 {
    background-color: #E4EDF6 !important;
}

.bg-blue-500 {
    background-color: var(--brand-blue) !important;
}

.hover\:bg-blue-600:hover {
    background-color: var(--brand-blue-dark) !important;
}
