.map-container{height:320px;border-radius:.75rem;overflow:hidden}.hidden{display:none}.toast-host{position:fixed;top:16px;right:16px;z-index:9999}.toast{background:#fff;border:1px solid #e5e7eb;border-radius:.5rem;padding:.5rem .75rem;margin-bottom:.5rem;font-size:.875rem;box-shadow:0 1px 2px rgba(0,0,0,.05)}

/* Mobile-first improvements */
@media (max-width: 768px) {
  .map-container {
    height: 250px;
    border-radius: 0.5rem;
  }
  
  /* Better touch targets for mobile */
  button, a {
    min-height: 44px;
    min-width: 44px;
  }
  
  /* Improved spacing for mobile */
  .step {
    padding: 1rem 0;
  }
  
  /* Better form inputs on mobile */
  input, select, textarea {
    font-size: 16px !important; /* Prevents zoom on iOS */
  }
}

/* Enhanced animations and transitions */
.transition-all {
  transition: all 0.2s ease-in-out;
}

/* Improved focus states for accessibility */
button:focus, a:focus, input:focus {
  outline: 2px solid #1a73e8;
  outline-offset: 2px;
}

/* Better loading states */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Enhanced toast notifications */
.toast {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #1a73e8;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Improved map styling */
.leaflet-container {
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Better service selection cards */
.service-card {
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.service-card.selected {
  border-color: #1a73e8;
  background-color: #eff6ff;
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

/* Enhanced mobile navigation */
#mobile-menu {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Better button states */
.btn-primary {
  background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
  box-shadow: 0 4px 14px 0 rgba(26, 115, 232, 0.39);
  transition: all 0.2s ease-in-out;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px 0 rgba(26, 115, 232, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Improved form styling */
.form-input {
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.2s ease-in-out;
}

.form-input:focus {
  border-color: #1a73e8;
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
  outline: none;
}

/* Enhanced status indicators */
.status-live {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Better responsive typography */
@media (max-width: 640px) {
  h1 {
    font-size: 2rem !important;
    line-height: 1.2 !important;
  }
  
  h2 {
    font-size: 1.5rem !important;
  }
  
  h3 {
    font-size: 1.25rem !important;
  }
}

/* Improved card shadows */
.card {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease-in-out;
}

.card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Better spacing utilities */
.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.space-y-8 > * + * {
  margin-top: 2rem;
}

/* Enhanced mobile menu button */
#mobile-menu-btn {
  transition: all 0.2s ease-in-out;
}

#mobile-menu-btn:hover {
  background-color: #f3f4f6;
  transform: scale(1.05);
}

/* Improved accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}