/**
 * @file
 * Styles for POS customer details display.
 */

#customer-details-display {
  display: none;
  margin: 1rem 0;
  padding: 1rem;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.customer-details-content {
  font-size: 0.9rem;
}

.customer-detail-row {
  padding: 0.25rem 0;
  line-height: 1.5;
}

.customer-detail-row strong {
  display: inline-block;
  min-width: 150px;
  color: #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #customer-details-display {
    margin: 0.75rem 0;
    padding: 0.75rem;
  }

  .customer-detail-row strong {
    display: block;
    min-width: auto;
    margin-bottom: 0.25rem;
  }
}
