.sitemap-container { 
    margin: 0 auto;
    padding: 40px 0;
    min-height: 70vh;
}

.sitemap-header {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
    border: 2px solid #e9ecef;
}

.sitemap-header h1 {
    color: #333;
    margin-bottom: 15px;
}

.sitemap-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.stat-item {
    background: white;
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid #dee2e6;
}

.sitemap-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.sitemap-btn {
    padding: 10px 20px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.sitemap-btn:hover {
    background: #0056b3;
}

.sitemap-btn.xml {
    background: #28a745;
}

.sitemap-section {
    background: white;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid #dee2e6;
}

.section-title {
    color: #495057;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.4em;
}

.category-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

.category-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #007bff;
}

.category-item a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
}

.category-item a:hover {
    color: #007bff;
}

.sub-categories {
    padding-left: 15px;
    margin-top: 8px;
}

.sub-categories a {
    color: #666;
    font-size: 0.9em;
    display: block;
    margin: 3px 0;
}

.article-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.article-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #e9ecef;
}

.article-item a {
    color: #333;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.article-item a:hover {
    color: #007bff;
}

.article-meta {
    font-size: 0.85em;
    color: #666;
    margin-top: 5px;
}

.update-info {
    background: #e7f5ff;
    padding: 15px;
    border-radius: 5px;
    margin-top: 30px;
    font-size: 0.9em;
    color: #495057;
}

@media (max-width: 768px) {
    .sitemap-container {
        padding: 10px;
    }

    .category-list,
    .article-list {
        grid-template-columns: 1fr;
    }

    .sitemap-stats {
        gap: 10px;
    }

    .stat-item {
        padding: 8px 15px;
    }

    .sitemap-actions {
        flex-wrap: wrap;
    }
}