/* Park4Fly Voice Widget - Premium Design */

:root {
  --p4f-primary: #667eea;
  --p4f-primary-dark: #5568d3;
  --p4f-danger: #ef4444;
  --p4f-danger-hover: #dc2626;
  --p4f-white: #ffffff;
  --p4f-black: #000000;
  --p4f-gray-50: #f9fafb;
  --p4f-gray-100: #f3f4f6;
  --p4f-gray-200: #e5e7eb;
  --p4f-gray-600: #4b5563;
  --p4f-gray-700: #374151;
  --p4f-gray-900: #111827;
}

/* Reset for widget isolation */
#park4fly-widget-root {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#park4fly-widget-root * {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Floating Widget - ElevenLabs Style */
.p4f-widget-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--p4f-white);
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 2px 24px 1px rgba(0, 0, 0, 0.16);
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9998;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  min-width: 300px;
  max-width: 340px;
}

.p4f-widget-container:hover {
  box-shadow: 0 4px 32px 2px rgba(0, 0, 0, 0.20);
  transform: translateY(-2px);
}

.p4f-widget-row {
  display: flex;
  align-items: center;
  padding: 0;
  flex-shrink: 0;
}

.p4f-logo-text-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.p4f-logo-circle {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: var(--p4f-white);
  border: 1px solid var(--p4f-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6px;
}

.p4f-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p4f-help-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--p4f-gray-900);
  line-height: 1.3;
  flex: 1;
}

.p4f-button-row {
  display: flex;
  align-items: center;
  padding: 0;
  flex-shrink: 0;
}

.p4f-call-btn {
  width: 100%;
  height: 46px;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  background: var(--p4f-black);
  color: var(--p4f-white);
  border: 1px solid var(--p4f-black);
  border-radius: 23px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.p4f-call-btn:hover {
  background: #1f2937;
  border-color: #1f2937;
}

.p4f-call-btn:active {
  background: #374151;
  border-color: #374151;
}

.p4f-call-btn svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

/* Modal Overlay */
.p4f-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 9999;
  animation: p4f-fadeIn 0.25s ease-out;
  padding: 20px;
}

@keyframes p4f-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Modal Container */
.p4f-modal {
  background: var(--p4f-white);
  border-radius: 20px;
  width: 420px;
  max-width: 100%;
  max-height: calc(100vh - 40px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  animation: p4f-slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
  min-height: 0; /* Important for flex children to shrink */
}

@keyframes p4f-slideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Close Button */
.p4f-close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--p4f-gray-100);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--p4f-gray-600);
  transition: all 0.2s ease;
  z-index: 10;
}

.p4f-close-button:hover {
  background: var(--p4f-gray-200);
  color: var(--p4f-gray-900);
  transform: rotate(90deg);
}

/* Modal Header */
.p4f-modal-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--p4f-gray-100);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0; /* Prevent header from shrinking */
  background: linear-gradient(to bottom, var(--p4f-gray-50) 0%, var(--p4f-white) 100%);
}

.p4f-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--p4f-white);
  border: 1px solid var(--p4f-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 8px;
  transition: all 0.3s ease;
}

.p4f-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Logo animation when listening */
.p4f-logo.listening {
  border-color: var(--p4f-primary);
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
  animation: p4f-listen-pulse 2s ease-in-out infinite;
}

/* Logo animation when speaking */
.p4f-logo.speaking {
  border-color: var(--p4f-primary);
  box-shadow: 0 0 0 6px rgba(102, 126, 234, 0.25), 0 0 20px rgba(102, 126, 234, 0.4);
  animation: p4f-speak-pulse 1s ease-in-out infinite;
  transform: scale(1.05);
}

@keyframes p4f-listen-pulse {
  0%, 100% {
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(102, 126, 234, 0.25), 0 0 0 12px rgba(102, 126, 234, 0.1);
  }
}

@keyframes p4f-speak-pulse {
  0%, 100% {
    box-shadow: 0 0 0 6px rgba(102, 126, 234, 0.25), 0 0 20px rgba(102, 126, 234, 0.4);
    transform: scale(1.05);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(102, 126, 234, 0.35), 0 0 30px rgba(102, 126, 234, 0.5);
    transform: scale(1.08);
  }
}

.p4f-header-text h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--p4f-gray-900);
  margin: 0 0 4px 0;
  letter-spacing: -0.5px;
}

.p4f-header-text p {
  font-size: 14px;
  color: var(--p4f-gray-600);
  margin: 0;
  font-weight: 500;
}

/* Modal Content */
.p4f-modal-content {
  flex: 1;
  padding: 32px 28px;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 0; /* Important for flex children to shrink */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

.p4f-modal-content::-webkit-scrollbar {
  width: 6px;
}

.p4f-modal-content::-webkit-scrollbar-track {
  background: var(--p4f-gray-100);
  border-radius: 3px;
}

.p4f-modal-content::-webkit-scrollbar-thumb {
  background: var(--p4f-gray-400);
  border-radius: 3px;
}

.p4f-modal-content::-webkit-scrollbar-thumb:hover {
  background: var(--p4f-gray-500);
}

/* Welcome State */
.p4f-welcome {
  text-align: center;
  padding: 20px 0;
}

.p4f-welcome p {
  font-size: 15px;
  color: var(--p4f-gray-700);
  margin-bottom: 28px;
  line-height: 1.6;
  font-weight: 500;
}

.p4f-call-button {
  background: var(--p4f-black);
  color: var(--p4f-white);
  border: none;
  border-radius: 50px;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.p4f-call-button:hover {
  background: var(--p4f-gray-900);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.p4f-call-button:active {
  transform: translateY(0);
}

.p4f-call-button svg {
  width: 22px;
  height: 22px;
}

/* Connecting State */
.p4f-connecting {
  text-align: center;
  padding: 50px 0;
}

.p4f-spinner {
  width: 56px;
  height: 56px;
  border: 5px solid var(--p4f-gray-100);
  border-top-color: var(--p4f-primary);
  border-radius: 50%;
  animation: p4f-spin 0.8s linear infinite;
  margin: 0 auto 20px;
}

@keyframes p4f-spin {
  to {
    transform: rotate(360deg);
  }
}

.p4f-connecting p {
  font-size: 16px;
  color: var(--p4f-gray-700);
  font-weight: 600;
}

/* Active Call State */
.p4f-active-call {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 20px 0;
}

.p4f-status {
  text-align: center;
}

.p4f-status p {
  font-size: 16px;
  font-weight: 600;
  color: var(--p4f-gray-700);
}

.p4f-status-speaking {
  color: var(--p4f-primary) !important;
  font-weight: 700 !important;
  animation: p4f-speak-text 1.2s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(102, 126, 234, 0.3);
}

.p4f-status-success {
  color: #10b981 !important;
  font-weight: 700 !important;
}

@keyframes p4f-speak-text {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.02);
  }
}

/* Call Controls */
.p4f-call-controls {
  display: flex;
  gap: 20px;
  align-items: center;
}

.p4f-control-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--p4f-gray-100);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--p4f-gray-700);
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.p4f-control-button:hover {
  background: var(--p4f-gray-200);
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.p4f-control-button:active {
  transform: scale(1);
}

.p4f-control-button.p4f-muted {
  background: var(--p4f-danger);
  color: var(--p4f-white);
}

.p4f-control-button.p4f-muted:hover {
  background: var(--p4f-danger-hover);
}

.p4f-end-call-button {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--p4f-danger);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--p4f-white);
  transition: all 0.2s ease;
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
}

.p4f-end-call-button:hover {
  background: var(--p4f-danger-hover);
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(239, 68, 68, 0.5);
}

.p4f-end-call-button:active {
  transform: scale(1);
}

/* Wave Animation - Enhanced for better visibility */
.p4f-wave-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 100px;
  margin: 20px 0;
}

.p4f-wave-bars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 100%;
}

.p4f-wave-bar {
  width: 6px;
  height: 20px;
  background: linear-gradient(to top, var(--p4f-gray-300), var(--p4f-gray-400));
  border-radius: 3px;
  transition: all 0.2s ease;
  opacity: 0.4;
}

/* Listening state - subtle, gentle animation */
.p4f-wave-bars.listening .p4f-wave-bar {
  background: linear-gradient(to top, var(--p4f-primary), var(--p4f-primary-dark));
  opacity: 0.6;
}

.p4f-wave-bars.listening .p4f-wave-bar:nth-child(1) {
  animation: p4f-listen-wave 1.5s ease-in-out infinite 0s;
}

.p4f-wave-bars.listening .p4f-wave-bar:nth-child(2) {
  animation: p4f-listen-wave 1.5s ease-in-out infinite 0.2s;
}

.p4f-wave-bars.listening .p4f-wave-bar:nth-child(3) {
  animation: p4f-listen-wave 1.5s ease-in-out infinite 0.4s;
}

.p4f-wave-bars.listening .p4f-wave-bar:nth-child(4) {
  animation: p4f-listen-wave 1.5s ease-in-out infinite 0.6s;
}

.p4f-wave-bars.listening .p4f-wave-bar:nth-child(5) {
  animation: p4f-listen-wave 1.5s ease-in-out infinite 0.8s;
}

/* Speaking state - more dynamic, energetic animation */
.p4f-wave-bars.speaking {
  gap: 10px;
}

.p4f-wave-bars.speaking .p4f-wave-bar {
  width: 8px;
  background: linear-gradient(to top, var(--p4f-primary), #764ba2);
  opacity: 1;
  box-shadow: 0 2px 12px rgba(102, 126, 234, 0.5);
}

.p4f-wave-bars.speaking .p4f-wave-bar:nth-child(1) {
  animation: p4f-speak-wave 0.6s ease-in-out infinite 0s;
}

.p4f-wave-bars.speaking .p4f-wave-bar:nth-child(2) {
  animation: p4f-speak-wave 0.6s ease-in-out infinite 0.1s;
}

.p4f-wave-bars.speaking .p4f-wave-bar:nth-child(3) {
  animation: p4f-speak-wave 0.6s ease-in-out infinite 0.2s;
}

.p4f-wave-bars.speaking .p4f-wave-bar:nth-child(4) {
  animation: p4f-speak-wave 0.6s ease-in-out infinite 0.3s;
}

.p4f-wave-bars.speaking .p4f-wave-bar:nth-child(5) {
  animation: p4f-speak-wave 0.6s ease-in-out infinite 0.4s;
}

@keyframes p4f-listen-wave {
  0%, 100% {
    height: 20px;
    opacity: 0.6;
  }
  50% {
    height: 50px;
    opacity: 1;
  }
}

@keyframes p4f-speak-wave {
  0%, 100% {
    height: 20px;
    opacity: 0.8;
  }
  50% {
    height: 80px;
    opacity: 1;
  }
}

/* Error State */
.p4f-error {
  background: #fef2f2;
  border: 2px solid #fecaca;
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 20px;
  width: 100%;
}

.p4f-error p {
  color: #991b1b;
  font-size: 14px;
  margin: 0;
  font-weight: 600;
}

/* Modal Footer */
.p4f-modal-footer {
  padding: 18px 28px;
  border-top: 1px solid var(--p4f-gray-100);
  text-align: center;
  background: var(--p4f-gray-50);
  flex-shrink: 0; /* Prevent footer from shrinking */
}

.p4f-modal-footer p {
  font-size: 12px;
  color: var(--p4f-gray-600);
  margin: 0;
  font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 500px) {
  .p4f-modal-overlay {
    padding: 0;
    align-items: stretch;
  }
  
  .p4f-modal {
    width: 100%;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
  }
  
  .p4f-widget-container {
    bottom: 16px;
    right: 16px;
    min-width: 280px;
  }
  
  .p4f-modal-header {
    padding: 24px 24px 16px;
    flex-shrink: 0; /* Prevent header from shrinking */
  }
  
  .p4f-modal-content {
    padding: 24px 20px;
    flex: 1;
    min-height: 0; /* Important for scrolling */
  }
  
  .p4f-modal-footer {
    flex-shrink: 0; /* Prevent footer from shrinking */
  }
}

/* User Form */
.p4f-user-form {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  margin: 15px 0;
  animation: p4f-slideUp 0.3s ease-out;
}

/* Booking Summary */
.p4f-booking-summary {
  background: #ffffff;
  border: 2px solid var(--p4f-primary);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 20px;
}

.p4f-booking-summary h3 {
  margin: 0 0 12px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--p4f-primary);
  text-align: center;
}

.p4f-summary-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p4f-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  background: #f8fafc;
  border-radius: 6px;
  font-size: 14px;
}

.p4f-summary-item strong {
  color: var(--p4f-gray-700);
  font-weight: 600;
  flex-shrink: 0;
  margin-right: 12px;
}

.p4f-summary-item span {
  color: var(--p4f-gray-900);
  text-align: right;
  flex-grow: 1;
}

.p4f-summary-price {
  background: linear-gradient(135deg, var(--p4f-primary) 0%, var(--p4f-primary-dark) 100%);
  color: white;
  font-weight: 600;
}

/* Pricing Breakdown Styles */
.p4f-summary-pricing-breakdown {
  background: #f8fafc;
  border-radius: 8px;
  padding: 15px;
}

.p4f-pricing-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p4f-pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: white;
  border-radius: 6px;
  font-size: 14px;
}

.p4f-pricing-label {
  color: var(--p4f-gray-700);
  font-weight: 500;
  flex: 1;
}

.p4f-pricing-value {
  color: var(--p4f-gray-900);
  font-weight: 600;
  text-align: right;
  min-width: 80px;
}

.p4f-pricing-extra {
  background: #f0f4f8;
  padding: 6px 12px;
  font-size: 13px;
}

.p4f-pricing-extra .p4f-pricing-label {
  color: #555;
  font-weight: 400;
}

.p4f-pricing-extra .p4f-pricing-value {
  color: #666;
  font-weight: 500;
}

.p4f-pricing-extras-total {
  background: #e8f0f5;
  border-top: 1px solid #d0d8e0;
  border-bottom: 1px solid #d0d8e0;
  margin-top: 4px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.p4f-pricing-extras-total .p4f-pricing-label {
  font-weight: 600;
  color: var(--p4f-gray-800);
}

.p4f-pricing-extras-total .p4f-pricing-value {
  font-weight: 600;
  color: var(--p4f-gray-900);
}

.p4f-pricing-total {
  background: linear-gradient(135deg, var(--p4f-primary) 0%, var(--p4f-primary-dark) 100%);
  color: white;
  margin-top: 8px;
  padding: 12px;
  font-size: 16px;
  border-radius: 8px;
}

.p4f-pricing-total .p4f-pricing-label {
  color: white;
  font-weight: 700;
  font-size: 16px;
}

.p4f-pricing-total .p4f-pricing-value {
  color: white;
  font-weight: 700;
  font-size: 18px;
  font-size: 16px;
  margin-top: 4px;
}

.p4f-summary-price strong,
.p4f-summary-price span {
  color: white;
}

.p4f-form-header {
  text-align: center;
  margin-bottom: 20px;
}

.p4f-form-header h3 {
  color: #1e293b;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.p4f-form-header p {
  color: #64748b;
  font-size: 14px;
  margin: 0;
}

.p4f-form-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.p4f-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.p4f-form-group label {
  color: #374151;
  font-size: 14px;
  font-weight: 500;
}

.p4f-form-group input {
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.2s ease;
  background: white;
}

.p4f-form-group input:focus {
  outline: none;
  border-color: var(--p4f-primary);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.p4f-form-actions {
  display: flex;
  justify-content: center;
}

.p4f-form-button {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 120px;
}

.p4f-form-continue,
.p4f-form-submit {
  background: var(--p4f-primary);
  color: white;
}

.p4f-form-continue:hover,
.p4f-form-submit:hover {
  background: #4a5fa8;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.p4f-form-cancel {
  background: #f1f5f9;
  color: #64748b;
  margin-right: 12px;
}

.p4f-form-cancel:hover {
  background: #e2e8f0;
}

.p4f-form-confirm {
  background: #10b981;
  color: white;
}

.p4f-form-confirm:hover {
  background: #059669;
  transform: translateY(-1px);
}

/* Confirmation Popup */
.p4f-confirmation-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  animation: p4f-fadeIn 0.2s ease-out;
  backdrop-filter: blur(2px);
}

.p4f-confirmation-popup {
  background: white;
  border-radius: 16px;
  padding: 24px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  animation: p4f-slideUp 0.3s ease-out;
}

.p4f-confirmation-header {
  text-align: center;
  margin-bottom: 20px;
}

.p4f-confirmation-header h3 {
  color: #1e293b;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.p4f-confirmation-content {
  margin-bottom: 24px;
}

.p4f-confirmation-content p {
  color: #64748b;
  font-size: 14px;
  margin: 0 0 16px 0;
  text-align: center;
}

.p4f-confirmation-details {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}

.p4f-confirmation-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #e2e8f0;
}

.p4f-confirmation-item:last-child {
  border-bottom: none;
}

.p4f-confirmation-item strong {
  color: #374151;
  font-weight: 600;
}

.p4f-confirmation-item span {
  color: #1e293b;
  font-weight: 500;
}

.p4f-confirmation-note {
  background: #fef3c7;
  border: 1px solid #f59e0b;
  border-radius: 6px;
  padding: 12px;
  font-size: 13px;
  color: #92400e;
  margin: 0;
}

.p4f-confirmation-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

