/* Additional styles for geo-gestion application */

/* Ensure proper scrolling and layout */
html, body {
  scroll-behavior: smooth;
}

/* Enhanced focus styles for accessibility */
select:focus,
button:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Loading states */
[aria-busy="true"] {
  opacity: 0.7;
  pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #electoralSidebar {
    width: 100%;
    max-width: 100vw;
    position: absolute;
    top: 0;
    right: -100%;
    transition: right 0.3s ease;
    z-index: 20;
  }
  
  #electoralSidebar.open {
    right: 0;
  }
  
  #layer-controls {
    width: 200px;
  }
}

/* Custom scrollbar for sidebar */
#electoralSidebar::-webkit-scrollbar {
  width: 6px;
}

#electoralSidebar::-webkit-scrollbar-track {
  background: #f1f5f9;
}

#electoralSidebar::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

#electoralSidebar::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}
