.container {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: flex;
  flex-direction: column;
}

/* Loading states */
.loadingContainer {
  width: 100%;
  height: 100%;
  min-height: 500px;
}

.loadingSingle {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4);
  height: 100%;
}

.loadingSideBySide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-4);
  height: 100%;
  min-height: 500px;
}

.loadingMap,
.loadingList {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-3);
}

/* Empty state */
.emptyState {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-8);
  text-align: center;
  min-height: 400px;
  background-color: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.emptyIcon {
  font-size: 4rem;
  margin-bottom: var(--spacing-4);
  opacity: 0.6;
}

.emptyTitle {
  font-family: var(--font-family-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0 0 var(--spacing-2) 0;
}

.emptyDescription {
  font-size: 1rem;
  color: var(--muted-foreground);
  margin: 0;
  max-width: 400px;
  line-height: 1.5;
}

/* Mobile layout */
.mobileLayout {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 500px;
}

/* Desktop layout */
.desktopLayout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-4);
  height: 100%;
  min-height: 500px;
}

/* Sections */
.mapSection {
  display: flex;
  flex-direction: column;
  min-height: 400px;
}

.listSection {
  display: flex;
  flex-direction: column;
  min-height: 400px;
}

.map,
.list {
  flex: 1;
  height: 100%;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .desktopLayout {
    grid-template-columns: 1fr;
    gap: var(--spacing-3);
  }
  
  .mapSection,
  .listSection {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .container {
    min-height: 400px;
  }
  
  .mobileLayout {
    min-height: 400px;
  }
  
  .mapSection,
  .listSection {
    min-height: 300px;
  }
  
  .emptyState {
    padding: var(--spacing-6);
    min-height: 300px;
  }
  
  .emptyIcon {
    font-size: 3rem;
  }
  
  .emptyTitle {
    font-size: 1.25rem;
  }
  
  .emptyDescription {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .container {
    min-height: 350px;
  }
  
  .emptyState {
    padding: var(--spacing-4);
    min-height: 250px;
  }
  
  .emptyIcon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-3);
  }
  
  .emptyTitle {
    font-size: 1.125rem;
  }
  
  .emptyDescription {
    font-size: 0.875rem;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .emptyState {
    border-width: 2px;
  }
  
  .emptyTitle {
    font-weight: 700;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .container,
  .mobileLayout,
  .desktopLayout {
    transition: none;
  }
}

/* Dark mode adjustments */
:global(.dark) .emptyState {
  background-color: var(--card);
  border-color: var(--border);
}

:global(.dark) .emptyTitle {
  color: var(--foreground);
}

:global(.dark) .emptyDescription {
  color: var(--muted-foreground);
}