.simple-sitemap {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.sitemap-header {
    text-align: center;
    margin-bottom: 40px;
}

.sitemap-header h1 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 10px;
}

.sitemap-header p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.simple-links-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.simple-page-link {
    display: block;
    font-size: 1.1rem;
    color: #2c3e50;
    text-decoration: none;
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
}

.simple-page-link:hover {
    background: #e3f2fd;
    color: #3498db;
    transform: translateX(5px);
}

.sitemap-stats {
    text-align: center;
    padding: 20px 0;
    color: #666;
    font-size: 0.95rem;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px;
}

.sitemap-footer {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

.no-pages {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 1.1rem;
    background: #f9f9f9;
    border-radius: 8px;
    margin: 40px 0;
}

@media (max-width: 768px) {
    .simple-sitemap {
        padding: 30px 15px;
    }

    .sitemap-header h1 {
        font-size: 1.8rem;
    }

    .simple-page-link {
        padding: 10px 15px;
        font-size: 1rem;
    }
}
