:root {
    --color-rose: #DD8B8B;
    --color-beige: #F1E9E2;
    --color-noir: #000000;
    --font-raleway: 'Raleway', sans-serif;
    --font-yeseva: 'Yeseva One', serif;
}


body {
    background: var(--color-beige);
    padding-top: 56px;
    margin: 0;
    font-family: var(--font-raleway);
    overflow-x: hidden;
    color: #333; /* Par défaut pour tout le texte */
}

.color-rose {
    color: var(--color-rose);
}

.color-beige {
    color: var(--color-beige);
}

.color-noir {
    color: var(--color-noir);
}

.raleway {
    font-family: var(--font-raleway);
}

.yeseva {
    font-family: var(--font-yeseva);
}

/* Styles for tablets and larger devices */
@media (min-width: 768px) {
  h1 {
    font-size: 5em;
  }
}

/* Styles for desktops and larger devices */
@media (min-width: 1024px) {
  h1 {
    font-size: 3em;
  }
}

.header {
    background-color: var(--color-beige);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: inset 0 -1px 0 var(--color-rose);
    z-index: 999;
    padding: 15px 0;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    background-color: var(--color-rose);
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    border: 1px solid var(--color-rose);
	
}


/* Styles for tablets and larger devices */
@media (min-width: 768px) {
  .btn, .btn-secondaire, .btn-tertiaire {
    font-size: 3em;
	  border-radius: 15px;
  }
}

/* Styles for desktops and larger devices */
@media (min-width: 1024px) {
  .btn, .btn-secondaire, .btn-tertiaire {
    font-size: 1em;
	  border-radius: 5px;
  }
}

.btn:hover {
    background-color: #C76E6E;
    border: 1px solid #C76E6E;
}



a {
    color: var(--color-rose);
    text-decoration: underline;
    transition: text-decoration 0.3s;
}

a:hover {
    text-decoration: none;
}


.section {
    padding: 40px 20px;
    background-color: #fff;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.5s ease-in-out;
}

.section:hover {
    transform: translateY(-10px);
}

.section-title {
    font-size: 2em;
    margin-bottom: 20px;
    font-family: var(--font-yeseva);
}

.section-description {
    font-size: 1.2em;
    margin-bottom: 20px;
    font-family: var(--font-raleway);
}

footer{
    z-index: 1001;
    position: relative;
}

.footer-content {
    background: var(--color-rose);
    color: var(--color-beige);
    padding: 40px 20px;
    font-family: var(--font-raleway);
    text-align: center;
    
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 20px;
}

/* Styles for tablets and larger devices */
@media (min-width: 768px) {
  .footer-row {
    display: block;
  }
}

/* Styles for desktops and larger devices */
@media (min-width: 1024px) {
  .footer-row {
    display: flex;
  }
}

.footer-col {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-family: var(--font-yeseva);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--color-beige);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--color-beige);
    text-decoration: underline;
}

.footer-social {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-social a {
    color: var(--color-beige);
    margin: 0 10px;
    font-size: 20px;
    transition: color 0.3s;
}

/* Styles for tablets and larger devices */
@media (min-width: 768px) {
  .footer-social a {
    font-size: 70px;
  }
}

/* Styles for desktops and larger devices */
@media (min-width: 1024px) {
  .footer-social a {
    font-size: 20px;
  }
}

.footer-social a:hover {
    color: var(--color-beige);
}

.footer-row p {
    margin: 5px 0;
}

.footer-row a {
    color: var(--color-beige);
    text-decoration: none;
}

.footer-row a:hover {
    color: var(--color-beige);
    text-decoration: underline;
}


.logo {
    width: 60px;
}

/* Styles for tablets and larger devices */
@media (min-width: 768px) {
  .logo {
    width: 150px;
  }
}

/* Styles for desktops and larger devices */
@media (min-width: 1024px) {
  .logo {
    width: 60px;
  }
}

.banner {
    background-color: #DD8B8B;
    box-shadow: 6px 6px 25px rgba(0, 0, 0, 0.5);
    padding: 10px;
    margin: 50px;
    border-radius: 10px
}
.header-page-home {
    color: #F1E9E2;
    background: #DD8B8B;
    height: auto;
    width: 100%;
    font-family: var(--font-raleway);
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.vide40 {
    height: 40px;
}

main {
    margin: 0;
    padding-top: 35px;
    padding-left: 15px;
    padding-right: 15px;
}


/* Styles pour la transition de couleur du header */
.header-nav {
    background-color: #dd8b8d; /* Couleur d'origine */
    position: relative; /* Positionnement relatif pour le pseudo-élément */
}

.header-nav:before {
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: 50%;
    background-color: #F1E9E2; /* Nouvelle couleur de fond */
    transition: width 0.3s, background-color 0.3s; /* Transition fluide */
    z-index: -1; /* Position derrière le contenu du header */
}

.header-nav:hover:before {
    width: 100%; /* Largeur totale */
    left: 0; /* Position alignée à gauche */
    background-color: #F1E9E2; /* Nouvelle couleur de fond */
}

.container{
text-align: center;

}

/* Main container for the sections */
.main-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centers the sections within the container */
    
    margin: 0 auto; /* Center the main container */
    gap: 20px; /* Space between sections */
    padding: 20px; /* Adjust as necessary */
    box-sizing: border-box; /* Includes padding and border in the element's total width and height */
}

/* Styles for tablets and larger devices */
@media (min-width: 768px) {
  .main-container {
    display: block;
  }
}

/* Styles for desktops and larger devices */
@media (min-width: 1024px) {
  .main-container {
    display: flex;
  }
}
/* Section style for two columns on larger screens */
.section {
    flex: 1 1 calc(50% - 40px); /* Two sections per row with space between */
    box-sizing: border-box; /* Includes padding and border in the element's total width and height */
    margin-bottom: 20px; /* Space at the bottom of each section */
}

/* Making sections stack on smaller screens */
@media (max-width: 768px) {
    .section {
        flex: 1 1 100%; /* Single column layout */
        max-width: 100%;
    }
}

.header_navbar_logo {
    display: flex;
    justify-content: center;
    align-items: center;
}




/* CSS existant */
.faq-container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}
.faq-menu {
    flex: 1;
    max-width: 250px;
    margin-right: 20px;

    overflow-y: auto;
}
.faq-menu ul {
    list-style: none;
    padding: 0;
}
.faq-menu ul li {
    margin-bottom: 10px;
}
.faq-menu ul li a {
    color: var(--color-rose);
    text-decoration: none;
    display: block;
    padding: 10px;
    border: 1px solid var(--color-rose);
    border-radius: 5px;
    transition: background-color 0.3s;
}
.faq-menu ul li a:hover, .faq-menu ul li a.active {
    background-color: var(--color-rose);
    color: var(--color-beige);
}
.faq-content {
    flex: 3;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.faq-select {
    display: none;
    margin-bottom: 20px;
}

/* Styles spécifiques pour les petits écrans */
@media (max-width: 800px) {
    .faq-container {
        flex-direction: column;
    }
    .faq-menu {
        display: none;
    }
    .faq-select {
        display: block;
        width: 100%;
        padding: 10px;
        border: 1px solid var(--color-rose);
        border-radius: 5px;
    }
}

.titre-page{

    padding: 10px;
    text-align: center;
    font-family: var(--font-yeseva);
    color: var(--color-rose);
}



/* Styles spécifiques pour la page contacts */
.contact-info {
    background-color: #fff;
    padding: 20px;
    margin: 20px auto;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    color: #333;
}

.contact-info p {
    color: #666;
}

.map {
    background-color: #fff;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    /* Ajoutez des styles spécifiques à votre carte ici */
}




code {
    font-family: "Courier New", Courier, monospace;
    background-color: #f4f4f4;
    color: blue; /* Tout le texte sera en bleu */
    padding: 2px 4px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

pre code {
    display: block;
    padding: 10px;
    background-color: #f4f4f4;
    color: black; /* Tout le texte sera en noir */
    overflow-x: auto;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-weight: bold;
    
    word-wrap: break-word; /* Retour à la ligne automatique */
}

.html-code, .css-code, .js-code {
    color: black;
}



.accordion {
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #f1f1f1;
    cursor: pointer;
}

.accordion-titre h3 {
    margin: 0;
    font-size: 1.2em;
}

.accordion-chevron i {
    transition: transform 0.3s ease;
}

.accordion-chevron i.fa-chevron-up {
    transform: rotate(360deg);
}

.accordion-content {
    padding: 10px;
    display: none;
    background-color: #fff;
}

hr {
    margin: 0;
    border: none;
    border-top: 1px solid #ccc;
}




.upload-group {
    margin: 20px;
    padding: 20px;
    border: 2px solid var(--color-rose);
    border-radius: 20px;
    background-color: white;
}

.upload-label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    font-family: var(--font-raleway);
}

.hint-text {
    display: block;
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
}

.upload {
    display: block;
    margin-bottom: 10px;
}


.visionnage-composant{

    background-color: var(--color-beige);
    border-radius: 10px;
    padding: 20px;
}

.alert{
    background-color: white;
    color: var(--color-noir);
    border: 1px solid var(--color-rose);
    border-left: 5px solid var(--color-rose);
    padding: 0 0 0 10px;
    border-radius: 5px;
}


.alert--error{
    border: 1px solid #ce0500;
    border-left: 5px solid #ce0500;

    .alert__title{
        color: #ce0500;
        font-weight: bold;
    }
}

.alert--success{
    border: 1px solid #18753c;
    border-left: 5px solid #18753c;

    .alert__title{
        color: #18753c;
        font-weight: bold;
    }
}


.alert--info{
    border: 1px solid #0063cb;
    border-left: 5px solid #0063cb;

    .alert__title{
        color: #0063cb;
        font-weight: bold;
    }
}

.alert--warning{
    border: 1px solid #b34000;
    border-left: 5px solid #b34000;

    .alert__title{
        color: #b34000;
        font-weight: bold;
    }
}


.badge{

    align-items: center;
    background-color: whitesmoke;
    border-radius: .25rem;
    display: inline-flex;
    flex-direction: row;
    font-size: .875rem;
    font-weight: 700;
    line-height: 1.5rem;
    max-height: none;
    max-width: 100%;
    min-height: 1.5rem;
    overflow: visible;
    overflow: initial;
    padding: 0 .5rem;
    text-transform: uppercase;
    width: -moz-fit-content;
    width: fit-content;
    color: var(--color-rose);
    border: 1px solid var(--color-rose);
    font-weight: bold;


}


.badge--success{
        color: #18753c;
        border: 1px solid #18753c;
        background-color: #b8fec9;
}

.badge--error{
        color: #ce0500;
        border: 1px solid #ce0500;
        background-color: #ffe9e9;
}

.badge--info{
        color: #0063cb;
        border: 1px solid #0063cb;
        background-color: #e8edff;
}

.badge--warning{
        color: #b34000;
        border: 1px solid #b34000;
        background-color: #ffe9e6;
}

.badge--news{
        color: #695240;
        border: 1px solid #695240;
        background-color: #feebd0;
}

.notice{
    background-color: #eee;
    color: #161616;
    padding: 5px;
    position: inherit;
}

.notice-container{
    padding-left: 5px;
    padding-right: 5px;
    margin-left: 5px;
    margin-right: 5px;
    
}

.notice__body{
    padding: 0 2.25rem 0 0;
    position: relative;
}

.notice__title .notice__desc{
    display: inline;
}

.notice__title .notice__link .notice__desc{
    font-size: .875rem;
    line-height: 1.5rem;
}

.notice__title{
        font-weight: 700;
    margin-right: .25rem;
    position: relative;
}

.notice__desc{
    margin-right: .25rem;
}

.btn-notice-close{
    display: flex;
    font-size: .875rem;
    line-height: 1.5rem;
    margin-left: auto;

    overflow: visible;


    background: transparent;
    border: 0px solid transparent;
    cursor: pointer;
    width: 10px;
    height: 10px;
}







.notice--info{
    background-color: #e8edff;
    color: #0063cb;
}

.notice--warning{
    background-color: #ffe9e6;
    color: #b34000;
}

.notice--alert{
    background-color: #ffe9e9;
    color: #ce0500;
}



.search-container {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 100%;
}

.search-bar {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px;
    font-size: 16px;
    border-radius: 10px 0 0 10px;
    width: 100%;
}

.search-bar::placeholder {
    color: var(--color-rose);
}

.search-button {
    background-color: var(--color-rose);
    color: var(--color-beige);
    border: none;
    outline: none;
    padding: 10px 20px;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-button:hover {
    background-color: var(--color-beige);
    color: var(--color-rose);
}

.btn-secondaire{
    display: inline-block;
    padding: 10px 20px;
    color: var(--color-beige);
    background-color: var(--color-rose);
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    border: 1px solid var(--color-rose);
    cursor: pointer;
}

.btn-secondaire:hover{
    color: var(--color-rose);
    background-color: var(--color-beige);
}

.btn-tertiaire{
    display: inline-block;
    padding: 10px 20px;
    color: var(--color-rose);
    background-color: var(--color-beige);
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    border: 1px solid var(--color-rose);
    cursor: pointer;
}

.btn-tertiaire:hover{
    color: var(--color-beige);
    background-color: var(--color-rose);
}


.btns-group {
    list-style-type: none;
    padding: 0; 
    margin: 0; 
    display: flex;
    flex-direction: column;
    align-items: stretch;
}


.btns-group li {
    margin-bottom: 5px; 
}

.btns-group li:last-child {
    margin-bottom: 0; 
}

.btns-group{

.btn-secondaire, .btn-tertiaire {
    display: block;
    width: 100%; 
    box-sizing: border-box; 
    text-align: center;
}

}



.btns-group-inline {
    list-style-type: none; 
    padding: 0; 
    margin: 0; 
    display: flex; 
    justify-content: space-between; 
}


.btns-group-inline li {
    flex: 1; 
    margin-right: 10px; 
}


.btns-group-inline li:last-child {
    margin-right: 0;
}

.btns-group-inline{

.btn-secondaire, .btn-tertiaire {
    display: block;
    width: 100%; 
    box-sizing: border-box; 
    text-align: center; 
    text-decoration: none; 
}
}




.fieldset {
    border: 2px solid var(--color-rose);
    padding: 20px; 
    border-radius: 10px; 
    background-color: white; 
    margin: 20px 0; 
}

.fieldset__legend--regular {
    font-size: 1.5em; 
    color: var(--color-rose); 
    margin-bottom: 10px; 
    font-weight: bold; 
}

.fieldset__legend {
    font-size: 1.25em; 
    color: var(--color-rose); 
    margin-bottom: 10px;
}

.fieldset__element {
    margin-bottom: 10px; 
}

.fieldset__element--inline {
    display: flex; 
    align-items: center; 
}

.radio-group {
    display: flex; 
    align-items: center; 
    margin-right: 20px; 
}

.radio-group input[type="radio"] {
    margin-right: 10px;

}



.label {
    font-size: 1em; 
    color: var(--color-noir); 
}

.messages-group {
    color: #d9534f; 
    font-weight: bold; 
    margin-top: 10px; 
}


.checkbox-group {
    display: flex; 
    align-items: center; 
}

.checkbox-group input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-rose);
    border-radius: 4px;
    outline: none;
    margin-right: 10px;
    transition: background-color 0.3s ease;
    position: relative;
}

.checkbox-group input[type="checkbox"]:checked::before {
    content: '\2713';
    display: block;
    width: 100%; 
    height: 100%; 
    line-height: 20px; 
    font-size: 14px;
    text-align: center;
    color: var(--color-beige);
    background-color: var(--color-rose);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0px;
}



/* Grid system */
.grid-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.mb-3w {
    margin-bottom: 3rem;
}

.col {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

/* Card styles */
.card {
    border: 2px solid var(--color-rose);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.card__body {
    padding: 1rem;
}

.card__content {
    flex: 1;
}

.card__title {
    color: var(--color-rose);
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0;
    margin-bottom: 0.5rem;
}

.card__desc {
    margin-top: 0.5rem;
    color: var(--color-noir);
}

/* Card header styles */
.card__header {
    position: relative;
}

.card__img {
    width: 100%;
    height: auto;
}

.responsive-img {
    width: 100%;
    height: auto;
    display: block;
}

.enlarge-link {
    position: relative;
}

.card__link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: block;
    text-decoration: none;
}

.card__link:hover .card__title {
    text-decoration: underline;
}


.input-container {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 100%;
}

.input-bar {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px;
    font-size: 16px;
    border-radius: 10px 0 0 10px;
    width: 100%;
    color: var(--color-rose);
}

.input-bar::placeholder {
    color: var(--color-rose);
}

.input-icon {
    background-color: white;
    color: var(--color-rose);
    border: none;
    outline: none;
    padding: 5px 10px;
    border-radius: 0 10px 10px 0;
    cursor: default;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-separator{
    border: 1px solid var(--color-rose);
    height: 60px;
}




.consent-banner {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}



.consent-banner__content {
    margin-bottom: 20px;
}




.consent-banner__buttons {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}




.stepper {
    
    padding: 20px;
    margin: 20px 0;
}

.stepper__title {
   
    font-size: 1.5em;
    font-weight: bold;
    color: var(--color-rose);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stepper__state {
    /* Styles pour l'état de l'étape */
    font-size: 1em;
    color: var(--color-noir);
}

.stepper__progress {

    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.stepper__progress-step {

    flex: 1;
    height: 10px;
    background-color: white;
    border-radius: 2px;
    border: 1px solid var(--color-noir);
}

.stepper__progress-step.completed {
    /* Style pour les segments complétés */
    background-color: var(--color-rose);
    border: 1px solid var(--color-rose);
}

.stepper__details {
    /* Styles pour les détails de l'étape suivante */
    margin-top: 10px;
    font-size: 1em;
    color: var(--color-noir);
}

.text--bold {
    /* Styles pour le texte en gras */
    font-weight: bold;
    color: #000;
}




/* Style pour le bouton */
.btn-tooltip {
    padding: 10px 20px;
    background-color: var(--color-beige);
    color: var(--color-rose);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
}
.btn-tooltip:hover {
    background-color: #C8C0B8;
}

/* Style pour l'infobulle */
.tooltip {
    visibility: hidden;
    width: 200px;
    background-color: white;
    color: var(--color-rose);
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Position de l'infobulle */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    box-shadow: 4px 4px 4px 4px rgba(0, 0, 0, 0.1);;
}

.tooltip::after {
    content: "";
    position: absolute;
    top: 100%; /* En bas de l'infobulle */
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: white transparent transparent transparent;
}

/* Affichage de l'infobulle */
.btn--tooltip:hover .tooltip {
    visibility: visible;
    opacity: 1;
}




.toggle {
    /* Style pour le conteneur du toggle */
    display: flex;
    align-items: center;
}

.toggle__input {
    /* Style pour l'input checkbox */
    display: none;
}

.toggle__label {
    /* Style pour le label du toggle */
    display: flex;
    align-items: center;
    cursor: pointer;
}

.toggle__switch {
    /* Style pour l'interrupteur */
    width: 34px;
    height: 20px;
    background-color: #ccc;
    border-radius: 34px;
    position: relative;
    transition: background-color 0.3s ease;
    margin-right: 10px;
}

.toggle__switch::before {
    /* Style pour le rond dans l'interrupteur */
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    background-color: #fff;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: transform 0.3s ease;
}

.toggle__input:checked + .toggle__label .toggle__switch {
    /* Style pour l'interrupteur quand le checkbox est coché */
    background-color: var(--color-rose);
}

.toggle__input:checked + .toggle__label .toggle__switch::before {
    /* Position du rond quand le checkbox est coché */
    transform: translateX(14px);
}

.toggle__text {
    /* Style pour le texte du label */
    font-size: 16px;
    color: #000;
}

.select {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid white;
    border-radius: 5px;
    margin-bottom: 20px;
    margin-top: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: var(--color-rose);
}



/* Styles généraux pour les onglets */
.tabs {
    display: flex;
    flex-direction: column; /* Les onglets seront en colonne sur les petits écrans */
}

.tabs__list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    border-bottom: 2px solid var(--color-rose); /* Ligne en bas des onglets */
}

.tabs__list li {
    margin: 0 10px;
}

.tabs__tab {
    background-color: transparent;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    color: #555;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.tabs__tab:hover,
.tabs__tab:focus {
    color: var(--color-rose);
}

.tabs__tab--active {
    color: var(--color-rose);
    font-weight: bold; /* Onglet actif en gras */
}

.tabs__panel {
    display: none;
    padding: 20px;
    border: 1px solid #ccc;
    background-color: #fff; /* Fond blanc pour les panneaux */
}

.tabs__panel--selected {
    display: block;
}



.table-container {
    overflow-x: auto;
    border: 2px solid var(--color-rose); /* Ligne horizontale entre titres et contenu */
    border-radius: 5px;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
  }
  
  th, td {
    padding: 10px;
    text-align: center;
    border-right: 2px solid var(--color-rose); /* Bordure verticale pour les cellules */
  }
  
  th {
    background-color: #f0f0f0; /* Couleur de fond pour les cellules de titre */
  }
  
  thead th:last-child, tbody td:last-child {
    border-right: none; /* Pour supprimer la bordure droite de la dernière colonne */
  }
  
  thead th, thead td {
    border-bottom: 2px solid var(--color-rose); /* Ligne horizontale pour les titres */
  }
  
  tbody td {
    border-bottom: 1px solid #ccc; /* Ligne horizontale pour le contenu */
  }
  
  tbody tr:last-child td {
    border-bottom: none; /* Supprimer la ligne horizontale pour la dernière ligne de contenu */
  }

.download-link{
    padding: 20px;
    border: 1px solid var(--color-rose);
    border-radius: 10px;
}

.download-link-title{
    font-weight: bold;
}

.download-link-desc{
    color: gray;
    text-decoration: none;
}



.connectap{
    position: absolute;
    right: 50px;
    left: 50px;
    top: 150px;
    bottom: 50px;
    box-shadow: 8px 8px 8px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;

}

.logo-connectap{

    text-align: center;
    
    img{
        height: 300px;
    }
}


.identifiant-connectap{
    display: flex;
    align-items: center; /* Alignement vertical au centre */
    gap: 10px; /* Espacement entre les éléments */
    width: 100%; /* Largeur totale, ajustable selon le conteneur parent */
}

.separator-connectap{
    margin: 0 10px; /* Espacement autour du tiret */
    font-size: 20px; /* Ajuster la taille du tiret si nécessaire */
}


.connectap-select-group {
    flex: 1;
    display: flex;
    align-items: center;
}



.connectap-select {
    
    padding: 8px;
    font-size: 14px;
}



.connectap-input-container {
    flex: 1;
}

.connectap-input-bar {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    box-sizing: border-box;
}


.btn-connectap{
    text-align: center;
}

.connectap-creation-compte{
    padding: 20px;
}







.image-container {
  position: relative;
  max-height: 500px;
  overflow: hidden;
  border-radius: 20px;
}

.image-container img {
  width: 100%;
  height: 500px; /* Fixe la hauteur pour éviter la déformation */
  object-fit: cover; /* Remplit le conteneur sans déformer l'image */
  object-position: 50% 65%; /* Centre l'image sur les axes X et Y */
  border-radius: 20px;
}

/* Dégradé par-dessus l'image */
.image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.6)); 
  pointer-events: none; /* Le dégradé ne gêne pas les interactions avec l'image */
}

/* Style du texte alternatif */
.image-caption {
  margin-top: 8px;
  font-size: 14px;
  color: #555;
  text-align: center;
  font-style: italic;
}



/* Désactiver un lien bouton */
a.disabled {
  
  cursor: not-allowed;
  
  text-decoration: none; /* Optionnel : enlever la décoration du texte */
  opacity: 0.6; /* Optionnel : rendre le lien visuellement désactivé */
}