/* 텍스트를 강제로 검정색으로 만드는 오버라이드 스타일 */
svg text {
    fill: #000000 !important;
    color: #000000 !important;
}

svg .node text {
    fill: #000000 !important;
    color: #000000 !important;
}

.node-text,
.node-name,
.node-value {
    fill: #000000 !important;
    color: #000000 !important;
}

/* 모든 텍스트 요소에 대해 강제 적용 */
text[fill],
text[style*="fill"] {
    fill: #000000 !important;
}

/* 필터 버튼 활성화 스타일 */
.btn.active {
    background: linear-gradient(135deg, #4a5cc7 0%, #5a3d8a 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* QR 코드 섹션 스타일 */
.qr-section {
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.qr-section h3 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 1.2em;
}

#qrcode {
    display: inline-block;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.qr-url {
    margin-top: 15px;
    color: #666;
    font-size: 14px;
    word-break: break-all;
}