.selected-annonce{
    display : flex;
    flex-direction: column;
    align-items: center;
    width : 100%;
    margin : 0 auto;
}

.selected-content{
    display : flex;
    flex-direction: column;
    max-width: 100%;
}

.selected-title{
    margin : 30px auto;
    font-size: 2em;
    font-weight: 600;
    max-width: 80%;
    word-wrap: break-word;
    overflow: hidden;
}

#gallery {
    max-width: 100%;
    margin : 0 auto;
    position: relative;
    width: fit-content;
}

.slide{
    max-width: 1000px;
    width: 100%;
    height :auto;
    max-height: 700px;
    object-fit: cover;
}


#prev-arrow,
#next-arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 80px;
height: 100px;
background-color: rgba(0, 0, 0, 0.5);
color: #fff;
text-align: center;
align-items: center;
line-height: 90px;
font-size: 50px;
cursor: pointer;
}

#prev-arrow {
left: 0px;
}

#next-arrow {
right: 0px;
}

.selected-description{
    word-wrap: break-word;
    white-space: pre-line;
    overflow:hidden;
    max-width: 80%;
    font-size: 1.2em;
    margin : 0 auto;
    margin-top : 30px;
}

.hidden{
    display : none;
}


