/* Postal code typeahead styles */
.postal-code-container {
  position: relative;
}

.postal-code-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  background: white;
  border: 1px solid #ced4da;
  border-top: none;
  border-radius: 0 0 0.25rem 0.25rem;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.postal-code-item {
  padding: 8px 12px;
  cursor: pointer;
  border-bottom: 1px solid #f1f3f4;
}

.postal-code-item:hover,
.postal-code-item.active {
  background-color: #e9ecef;
}

.postal-code-item:last-child {
  border-bottom: none;
}

.postal-code-highlight {
  font-weight: bold;
  color: #0d6efd;
}