/* Make the address box stand out */
.address-box {
  border: 1px solid #ddd; /* Light border around address box */
  padding: 20px;           /* Add padding for spacing inside the box */
  border-radius: 5px;      /* Rounded corners */
  background-color: #f9f9f9; /* Light background to distinguish it */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional shadow for depth */
}

/* Optional: Style the legend for clarity */
.address-box legend {
  font-size: 1.2em;
  font-weight: bold;
  color: #333;
}

/* Optional: Add a margin to the bottom of the address box for spacing */
.address-box .mb-3 {
  margin-bottom: 1.5rem;
}
