/* ========================= */
/* Tableau      */
/* ========================= */

/* ====== Onglets ====== */
.cp-tabs-nav {
  display: flex;
  list-style: none;
  margin-top: 0;
  margin-bottom: 16px;
  flex-wrap: nowrap;
  gap: clamp(4px, 1vw, 24px);
  justify-content: space-between;
}
.cp-tabs-nav,
.cp-tabs-panels {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.cp-tabs-nav li {
    position: relative !important;
    cursor: pointer;
    user-select: none;
    outline: none;
    padding: 0 18px !important;
    font-weight: 700;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 34px;
    border-bottom: 4px solid #f2f2f2;
    font-family: "Urbanist";
}
.cp-tabs-nav li.active {
  background: var(--main-color);   /* remplace par ta couleur marque */
  color: #fff;
  border-radius: 999px;
  border: none;
}
.cp-tabs-nav li::before {
  display: none !important;
}

.cp-tabs-nav .cp-tab-sign {
  display: inline-block;
  margin-left: 10px;
  width: 14px;
  text-align: center;
}
.cp-tabs-nav li:not(.active) .cp-tab-sign::before { content: "+"; color:var(--main-color); }
.cp-tabs-nav li.active .cp-tab-sign::before { content: "–"; color:#fff;}

@media(max-width: 500px){
  .cp-tabs-nav {
    flex-direction: column;
  }
}

/* ====== Table sans thead/th ====== */
.custom-cp-table,
.custom-cp-complex-table {
  width: 100%;
  border-collapse: collapse;
}

.custom-cp-table tr + tr td,
.custom-cp-complex-table tr + tr td {
  border-top: 1.5px solid #f2f2f2;
}

/* Style “fiche specs” 2 colonnes (ex: onglet Principal)
.custom-cp-table td {
  padding: 12px 0;
}
.custom-cp-table td:first-child {
  font-weight: 700;
}
.custom-cp-table td:last-child {
  text-align: right;
  color: #aaa9a9;
} */

#content-area .tab-fp > .et_pb_code_inner > div > table.custom-cp-table,
#content-area .tab-fp > .et_pb_code_inner > div > table.custom-cp-table tr td,
#content-area .tab-fp > .et_pb_code_inner > div > table.custom-cp-complex-table,
#content-area .tab-fp > .et_pb_code_inner > div > table.custom-cp-complex-table tr td{
  border-width: 0;
    text-align: center;
    padding: .55em .55em;
}

#content-area .tab-fp > .et_pb_code_inner > div >  table.custom-cp-table tr td:first-of-type,
#content-area .tab-fp > .et_pb_code_inner > div >  table.custom-cp-complex-table tr td:first-of-type {
    font-weight: 600;
}

.tab-fp thead th, .entry-content tr th {
    font-weight: 800;
    color: #222;
    font-size: 1.1em;
}

.tab-fp thead tr:nth-child(odd) {
    background-color: #fff;
}

.tab-fp tr:nth-child(even),
table tbody td[rowspan],
table tbody td[colspan]{
    background-color: #fff;
}