/* Request Assistance Modal Styles */
#requestModal .modal-content {
  border-radius: 15px;
  border: none;
  box-shadow: 0 5px 30px rgba(0,0,0,0.2);
}

#requestModal .modal-dialog {
  max-width: 85%;
}

#requestModal .modal-header {
  background: #009639;
  color: white;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom: none;
  padding: 1.5rem;
}

#requestModal .modal-title {
  font-weight: 600;
  font-size: 1.5rem;
}

#requestModal .btn-close {
  filter: brightness(0) invert(1);
  opacity: 1;
}

#requestModal .form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

#requestModal .form-control,
#requestModal .form-select {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.75rem;
  transition: all 0.3s ease;
}

#requestModal .form-control:focus,
#requestModal .form-select:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

#requestModal .modal-footer {
  border-top: 1px solid #e0e0e0;
  padding: 1.25rem;
}

#requestModal .btn-primary {
  background: #009639;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 40px;
  font-weight: 600;
  transition: all 0.3s ease;
  height: 40px;
  margin: 0px;
}

#requestModal .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 150, 57, 0.4);
}

#requestModal .btn-secondary {
  background: #6c757d;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 40px;
  font-weight: 600;
  height: 40px;
  margin: 0px;
}

#requestModal .text-danger {
  color: #dc3545;
}

/* Map Container Styles */
#mapContainer {
  height: 275px;
  width: 100%;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  margin-bottom: 1rem;
  overflow: hidden;
}

#map {
  height: 100%;
  width: 100%;
}

.map-instructions {
  font-size: 0.875rem;
  color: #6c757d;
  margin-top: 0.5rem;
  font-style: italic;
}

.map-instructions i {
  color: #667eea;
  margin-right: 0.25rem;
}

/* Location Input with Map Icon */
.location-input-group {
  position: relative;
}

.location-input-group .form-control {
  padding-right: 2.5rem;
}

.location-map-icon {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #667eea;
  cursor: pointer;
  font-size: 1.25rem;
}

.location-map-icon:hover {
  color: #764ba2;
}

/* Coordinates Display */
.coordinates-display {
  font-size: 0.75rem;
  color: #6c757d;
  margin-top: 0.25rem;
}

.coordinates-display strong {
  color: #333;
}
#requestModal .modal-footer {
  justify-content: center;
  gap: 15px;
}