/* ========================================
   LOCATION PICKER OVERLAY
   ======================================== */
.location-picker-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.location-picker {
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  max-width: 520px;
  width: 90%;
  overflow: hidden;
}
.location-picker-header {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
  padding: 20px 24px;
  text-align: center;
}
.location-picker-header h2 {
  margin: 0 0 4px 0;
  font-size: 18px;
  font-weight: 700;
}
.location-picker-header p {
  margin: 0;
  font-size: 13px;
  opacity: 0.9;
}
.location-picker-body {
  padding: 24px;
}
.location-card {
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 16px;
}
.location-card:hover {
  border-color: #dc2626;
  background: #fef2f2;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(220,38,38,0.15);
}
.location-card:last-child {
  margin-bottom: 0;
}
.location-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.location-card-icon.manitoba {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
}
.location-card-icon.ontario {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #166534;
}
.location-card-text h3 {
  margin: 0 0 4px 0;
  font-size: 15px;
  font-weight: 600;
  color: #1f2937;
}
.location-card-text p {
  margin: 0;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.4;
}

