/* tracking-style.css */

/* Container for the tracking map */
.delivery-tracking-container {
    margin: 20px 0;
    padding: 10px;
    background: #f9f9f9; /* Light background to distinguish from rest of page */
    border: 1px solid #ddd;
    border-radius: 5px;
}

.delivery-tracking-container h2 {
    margin-top: 0;
    font-size: 1.5em;
}

/* Ensure the map area has a visible height */
#delivery-map {
  width: 100%;
  max-width: 100%;
  height: 500px;
  margin: 20px 0;
  background: #e0e0e0;
  border-radius: 6px;
}

/* Example styling for popups or markers if you add custom classes */

.mapboxgl-popup-content {
    font-size: 14px;
}

.mapboxgl-marker {
    cursor: pointer;
    /* Add custom marker styling if you have marker icons, etc. */
}
