/* Payment Modal Container */
#paymentViewModal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: none;
  z-index: 50;
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 56rem;
  max-height: 90vh;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  margin: 0 1rem;
}

.modal-header {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
}

.modal-body {
  padding: 1.25rem;
  overflow-y: auto;
  max-height: calc(90vh - 4rem);
}

/* Booking Summary */
.booking-summary {
  background: #eff6ff;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid #dbeafe;
}

.summary-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
  .summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Customer Information */
.customer-info {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1rem;
}

.info-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Payment Information */
.payment-info {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1rem;
}

/* Notes Section */
.notes-section {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1rem;
}

/* Buttons */
.action-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn {
  border-radius: 0.375rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border: none;
}

.btn-close {
  background: #dc2626;
  color: white;
}

.btn-download {
  background: #2563eb;
  color: white;
}

/* PDF Specific Styles */
.print-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.print-container .action-buttons {
  display: none !important;
}

/* Typography */
.text-sm {
  font-size: 0.875rem;
  color: #6b7280;
}

.font-medium {
  font-weight: 500;
}

.text-lg {
  font-size: 1.125rem;
}

.font-semibold {
  font-weight: 600;
}

.text-blue-800 {
  color: #1e40af;
}

.text-gray-800 {
  color: #1f2937;
}

/* Payment Status Badge */
.payment-status {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  background: #fef3c7;
  color: #92400e;
}
