/* Sitemap Page Styles */
.sitemap-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.sitemap-section {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border: 1px solid #e5e7eb;
}

.sitemap-section h2 {
  position: relative;
}

.sitemap-section h2 i {
  color: inherit;
}

.device-category {
  background: white;
  border-radius: 6px;
  padding: 1rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  border: 1px solid #e5e7eb;
}

.sitemap-page ul li a {
  transition: all 0.2s ease;
  display: inline-block;
  padding: 2px 0;
}

.sitemap-page ul li a:hover {
  transform: translateX(4px);
}

/* Scrollbar Styles for Sitemap Page */
.sitemap-page .max-h-48::-webkit-scrollbar,
.sitemap-page .max-h-96::-webkit-scrollbar {
  width: 4px;
}

.sitemap-page .max-h-48::-webkit-scrollbar-track,
.sitemap-page .max-h-96::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 2px;
}

.sitemap-page .max-h-48::-webkit-scrollbar-thumb,
.sitemap-page .max-h-96::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 2px;
}

.sitemap-page .max-h-48::-webkit-scrollbar-thumb:hover,
.sitemap-page .max-h-96::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}

/* Responsive adjustments for sitemap */
@media (max-width: 768px) {
  .sitemap-section {
    padding: 1rem;
  }
  
  .device-category {
    padding: 0.75rem;
  }
  
  .sitemap-page .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 640px) {
  .sitemap-section {
    padding: 0.75rem;
  }
  
  .sitemap-page ul li a {
    padding: 1px 0;
  }
} 