.custom-customer-details {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #333;
}

.custom-addresses {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.custom-address {
  background-color: #fff;
  border: 1px solid #ddd;
  flex: 1 1 320px;
  padding: 24px;
  box-shadow: 0 1px 5px rgb(0 0 0 / 0.1);
  transition: box-shadow 0.2s ease-in-out;
}

.custom-address:hover {
  box-shadow: 0 4px 20px rgb(0 0 0 / 0.15);
}

.custom-address h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 0.4rem;
}

.custom-address-inner p {
  margin: 0.6rem 0;
  font-size: 1rem;
  line-height: 1.5;
}

.custom-address-inner strong {
  color: #555;
}

@media (max-width: 600px) {
  .custom-addresses {
    flex-direction: column;
  }

  .custom-address {
    flex: 1 1 100%;
  }
}
