/* Sitemap 생성기 스타일 */

/* XML 미리보기 */
#xmlPreview {
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    color: #333;
    border: none;
    border-radius: 0;
}

#xmlPreview::-webkit-scrollbar {
    width: 8px;
}

#xmlPreview::-webkit-scrollbar-track {
    background: #e9ecef;
}

#xmlPreview::-webkit-scrollbar-thumb {
    background: #adb5bd;
    border-radius: 4px;
}

/* 통계 카드 */
.card .card-body h3 {
    font-weight: 700;
}

/* 페이지 목록 테이블 */
#pagesList td {
    vertical-align: middle;
}

#pagesList code {
    font-size: 0.8rem;
    word-break: break-all;
}

/* 로딩 애니메이션 */
#loadingArea .spinner-border {
    width: 3rem;
    height: 3rem;
}

/* 반응형 */
@media (max-width: 768px) {
    #xmlPreview {
        font-size: 0.75rem;
        max-height: 300px;
    }
    
    .card .card-body h3 {
        font-size: 1.5rem;
    }
}

/* 복사 버튼 애니메이션 */
#copyBtn.copied {
    background-color: #198754;
    border-color: #198754;
    color: white;
}

/* 다운로드 버튼 */
#downloadBtn {
    transition: all 0.3s ease;
}

#downloadBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25, 135, 84, 0.4);
}

