.sitemap-content {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.sitemap-content .card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sitemap-content .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.sitemap-content .card-header {
    border-radius: 10px 10px 0 0;
    padding: 1rem;
}

.sitemap-content .card-header h4 {
    font-weight: 600;
}

.sitemap-content .card-body {
    padding: 1.5rem;
}

.sitemap-content a {
    color: #495057;
    transition: color 0.3s ease;
    font-weight: 500;
}

.sitemap-content a:hover {
    color: #007bff;
    text-decoration: underline !important;
}

.sitemap-content .list-unstyled li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.sitemap-content .list-unstyled li:last-child {
    border-bottom: none;
}

.sitemap-content .text-muted {
    color: #6c757d !important;
    font-weight: 500;
}

.sitemap-content .bi {
    margin-right: 0.5rem;
    font-size: 1.1em;
}

.sitemap-content .alert-info {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: none;
    border-radius: 10px;
    padding: 1.5rem;
}

.sitemap-content .list-group-item {
    border: none;
    padding: 0.75rem 0;
    background: transparent;
}

.sitemap-content .list-group-item:not(:last-child) {
    border-bottom: 1px solid #f1f3f4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sitemap-content .card {
        margin-bottom: 1rem;
    }
    
    .sitemap-content .card-header h4 {
        font-size: 1.1rem;
    }
    
    .sitemap-content .card-body {
        padding: 1rem;
    }
}

/* Animation for page load */
.sitemap-content .card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.sitemap-content .card:nth-child(1) { animation-delay: 0.1s; }
.sitemap-content .card:nth-child(2) { animation-delay: 0.2s; }
.sitemap-content .card:nth-child(3) { animation-delay: 0.3s; }
.sitemap-content .card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
