/* Général */
.pricing-section {
  font-family: "TT Fors Trial", sans-serif;

  color: #08293F;
/*   padding: 40px;
 */
  margin: auto;
}

.title_bloc {
  display: flex;
    flex-direction: row;
    align-content: space-between;
    justify-content: space-between;
    align-items: center;
}



.download-pdf {
  background-color: #0A0A23;
  color: white;
  padding: 8px 16px;
  border-radius: 24px;
  text-decoration: none;
  font-size: 14px;
  float: right;
}

/* Table */
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  font-size: 14px;
}

.pricing-table thead th {
  background-color: #0E0E2B;
  color: #EFEEEC;
  padding: 12px;
  text-align: center;
  font-weight: 600;
  font-size:14px;
}

.pricing-table tbody td {
  padding: 12px;
  text-align: center;
}
tr td:first-child {
  text-align: left;
}

/* Accordion Rows */
.accordion-title-row td {
  background-color: #fff;
  font-weight: 600;
  font-size: 15px;
}

.accordion-button {
  background: #EFEEEC;
  border: none;
  font-size: 16px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  color: #0E0E2B;
  position: relative;
  margin: 0;
}

.accordion-button::after {
  content: "⌄";
  position: absolute;
  right: 16px;
  transition: transform 0.3s ease;
}

.accordion-button.active::after {
  transform: rotate(180deg);
}

/* Contenu accordéon */
.accordion-content td {
  background-color: #fff;
  text-align: center;
  padding: 12px;
}

/* Émojis de valeur */
td:has(> .checkmark),
td:has(> .crossmark) {
  font-size: 18px;
}

.checkmark {
  color: #FF6A00;
}

.crossmark {
  color: #999;
}

/* Footer */
.cta-footer {
  display: flex;
    flex-direction: row;
    align-content: space-between;
    justify-content: space-between;
    align-items: center;
}



.cta-button {
  background-color: #FF6A00;
  color: white;
  padding: 12px 24px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-table table {
    font-size: 12px;
  }

  .download-pdf {
    float: none;
    display: block;
    text-align: center;
    margin: 10px auto;
  }

  .accordion-button {
    font-size: 14px;
  }
}
/* Coin supérieur gauche */
.pricing-table thead tr th:first-child {
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
}

/* Coin supérieur droit */
.pricing-table thead tr th:last-child {
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  
}

/* Coin inférieur gauche */
.pricing-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 24px;
}

/* Coin inférieur droit */
.pricing-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 24px;
}


.accordion-content td:first-child {
  border-bottom-left-radius: 24px;
  padding-left:35px;
}
.accordion-content td:last-child {
  border-bottom-right-radius: 24px;
}
.accordion-button:hover,
.accordion-button:focus,
.accordion-button:active {
  background-color: #EFEEEC !important;
  color : #0E0E2B  !important;
  border : unset !important;
}
table,
table th,
table td,
table tr {
  border: none;
  border-collapse: collapse;
}
table th,
table td {
  outline: none;
}


html2canvas: {
    scale: 1.5,
    useCORS: true,
    logging: true,
    allowTaint: true,
    scrollX: 0,
    scrollY: 0,
    windowWidth: element.scrollWidth,
    windowHeight: element.scrollHeight
}
.accordion-content.force-pdf-display {
    display: table-row !important;
}
@media (max-width: 768px) {
  .pricing-table th,
  .pricing-table td {
    font-size: 12px;
    padding: 8px;
  }

  .pricing-table table {
    table-layout: fixed;
  }

  .accordion-button {
    font-size: 14px;
  }

  .title_bloc,
  .cta-footer {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-button {
    width: 100%;
    text-align: center;
  }
}
.pricing-table table {
  table-layout: fixed;
  width: 100%;
}

.pricing-table th,
.pricing-table td {
  word-wrap: break-word;
  overflow-wrap: break-word;
}


.info-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  background-color: #999;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 12px;
  font-style: italic;
  font-weight: bold;
  cursor: help;
  position: relative;
}

.info-icon:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 8px;
  padding: 8px 12px;
  background-color: #333;
  color: white;
  border-radius: 4px;
  font-size: 14px;
  font-weight: normal;
  white-space: nowrap;
  z-index: 100;
}