.pricing-section {
  background: #f8f9fa;
}

.small {
  font-size: 0.85rem;
}

/* Conteneur du tableau compact */
.pricing-table-container.compact {
  background: white;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

/* Tableau compact */
.compact-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  font-size: 0.85rem;
}

.compact-table th {
  background: #000000;
  color: white;
  padding: 0.75rem 0.5rem;
  font-weight: 600;
  text-align: left;
  border: none;
  font-size: 0.8rem;
}

.compact-table th:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

/* Bordures entre toutes les lignes */
.table-row {
  border-bottom: 1px solid #e0e0e0;
}

.table-row:last-child {
  border-bottom: none;
}

/* Cellules avec bordures */
.compact-table td {
  padding: 0.75rem 0.5rem;
  vertical-align: middle;
  border-right: 1px solid #f0f0f0;
}

.compact-table td:last-child {
  border-right: none;
}

/* Destination */
.destination-cell {
  background: #f8f9fa;
  font-weight: 500;
}

.destination-info {
  display: flex;
  align-items: center;
}

.city-name {
  color: black;
  font-weight: 500;
  font-size: 0.85rem;
}

/* Types de service compacts */
.service-type.small {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.service-type.air.small {
  background: #e3f2fd;
  color: #1565c0;
  border: 1px solid #bbdefb;
}

.service-type.sea.small {
  background: #e8f5e8;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

/* Prix */
.price-value {
  font-weight: 600;
  color: #e67e22;
  font-size: 0.9rem;
}

.price-with-doc {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Délais de livraison */
.delivery-info.small {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: #4a5568;
  font-weight: 400;
}

.delivery-info.small i {
  color: #e67e22;
  font-size: 0.75rem;
}

/* Notes */
.notes-content {
  color: #666;
  line-height: 1.4;
}

.included-features {
  margin-top: 0.35rem;
}

.feature-badge.small {
  background: #e8f5e8;
  color: #2e7d32;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  font-size: 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  border: 1px solid #c8e6c9;
}

/* Actions */
.pdf-link.small {
  background: #d32f2f;
  color: white;
  padding: 0.3rem 0.6rem;
  border-radius: 3px;
  text-decoration: none;
  font-size: 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.2s ease;
}

.pdf-link.small:hover {
  background: #b71c1c;
  color: white;
  text-decoration: none;
}

.no-doc.small {
  color: #9e9e9e;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
  .pricing-table-container.compact {
    padding: 0.5rem;
    margin: 0 -0.25rem;
    border-radius: 6px;
  }

  .table-responsive {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
  }

  .compact-table {
    min-width: 700px;
    font-size: 0.8rem;
  }

  .compact-table th,
  .compact-table td {
    padding: 0.6rem 0.4rem;
  }

  .service-type.small {
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
  }

  .price-value {
    font-size: 0.85rem;
  }

  .section-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.2rem;
  }

  .pricing-table-container.compact {
    padding: 0.25rem;
  }

  .compact-table th,
  .compact-table td {
    padding: 0.5rem 0.3rem;
  }

  .service-type.small {
    padding: 0.2rem 0.4rem;
    font-size: 0.65rem;
  }

  .price-with-doc {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .pdf-download-btn.small,
  .pdf-link.small {
    font-size: 0.65rem;
    padding: 0.2rem 0.4rem;
  }
}

/* Indicateur de défilement horizontal */
.table-responsive::-webkit-scrollbar {
  height: 6px;
}

.table-responsive::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.table-responsive::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}
/* Séparateur entre le prix et les détails */
.price-divider {
  border: none;
  border-top: 1px dashed #ddd;
  margin: 0.4rem 0;
}

/* Texte d'explication */
.price-detail-text {
  font-size: 0.9rem;
  font-weight: 800;
  color: #d32f2f;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Bouton PDF plus grand et élégant */
.pdf-download-btn.small {
  background: #d32f2f;
  color: white;
  padding: 0.35rem 0.6rem;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.pdf-download-btn.small i {
  font-size: 1rem;
}

.pdf-download-btn.small:hover {
  background: #b71c1c;
  color: white;
  transform: scale(1.05);
}
