.image-slider {
    max-width: 90%;
    margin: 0 auto;
    margin-top: 1%;
    overflow: hidden;
    
    
}

.slider-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slider-container img {
    width: 100%;
    height: 50%;
}

.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: white;
    background-color: #333;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
}

.slick-prev {
    left: 0;
}

.slick-next {
    right: 0;
}

.slick-prev::before,
.slick-next::before {
    content: '\2190'; /* Unicode code for a left arrow */
    font-family: 'Arial', sans-serif; /* Use a font that supports the symbol */
}

.slick-next::before {
    content: '\2192'; /* Unicode code for a right arrow */
}


/* Basic style for the button */
.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border-radius: 5px;
    background-color: #333;
    color: #ffffff;
}

.photo-table {
    max-width: 150px;
    max-height: 150px;
}

/* Section Styles */
.section {
    display: none;
    border-radius: 10px;
    background-color: #c7c7c7;
    padding: 15px;
    width: 100%;
    margin: 30px auto;
    text-align: center;
    align-self: flex-start;
    color: white;
    border: 2px solid black;

    
}
.section td{
    border: 2px solid black;
}

.section.active {
    display: block;
    box-shadow: 5px 5px rgba(100, 100, 100, 0.4), 10px 10px rgba(102, 102, 102, 0.3), 15px 15px rgba(94, 94, 94, 0.2), 20px 20px rgba(108, 108, 108, 0.1), 25px 25px rgba(133, 133, 133, 0.05);
}

.section.enter-from-right {
    transition: all 0s;
    transform: translateX(200%);
}

.section.enter-from-right.transi {
    transition: all 0.3s ease-in-out;
    transform: translateX(0%);
}

.section.enter-from-right.transi.transiout {
    transition: all 0.3s ease-in-out;
    transform: translateX(-200%);
}

main {

    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centrer les éléments horizontalement */
    justify-content: center; /* Centrer les éléments verticalement */
    color: white;
    text-align: center;
}
main h2 {
    border-bottom: 2px solid #000000;
    padding-bottom: 10px;
    text-align: center;
    color: black;

}
section {

    text-align: center;
}

.section section {
    color: white;

}

.sectionflex table {
    display: flex;
    justify-content: center;
    text-align: center;
}
