body {
    background-image: linear-gradient(to top, #a3bded 0%, #6991c7 100%);
    width:max-content;
    height:max-content;
    margin: 0;
    padding: 0;
    font-family: 'DM Sans', sans-serif;
}

.all-content {
    width: calc(100vw - 60px);
    height: calc(100vh - 60px);
    margin: 30px;
    box-sizing: border-box;
    background-color: rgb(226, 234, 236);
    border-radius: 20px;
    border-color: #a3bded;
    border-style: solid;
    border-width: 10px;
    display: flex;
    overflow: hidden;
}

.TypeVideo {
    background-color: aliceblue;
    width: 15%;
    text-align: center;
    font-family: 'DM Sans';
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
}

.TypeVideo h3 {
    max-width: 85%;
    max-height: 10%;
}

.icon {
    width: 85%;
    height: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    margin: 10px;
}
.icon:hover {
    background-color: rgb(233, 233, 233);
}
.icon img {
    height: 40%;
}

.ContentVideo {
    width: 85%;
    height: 100%;
    text-align: center;
    font-family: 'DM Sans';
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
}

.block-video {
    background-color: rgb(224, 224, 224);
    border-radius: 15px;
    margin: 0.8em;
    width: 90%;
    display: flex;
    height: 35vh; /* Hauteur du bloc vidéo */
}

.block-video:hover {
    background-color: rgb(209, 200, 200);
}

.ContentVideo video {
    min-height: auto;
    margin: 10px;
    border-radius: 5px;
    width: 30%;
}
.ContentVideo img {
    height: 30vh;
    margin: 10px;
    border-radius: 5px;
}

.InfosVideo {
    padding: 10px;
    text-align: left;
    display: grid;
}

.InfosVideo p {
    margin: 0.5em 0; /* Espacement vertical entre les lignes */
    font-size: 2.5vh; /* Taille de la police */
}

.InfosVideo .label {
    font-weight: normal;
}

.InfosVideo .value {
    font-weight: bold;
}



.lightbox {
    display: none; /* Caché par défaut */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8); /* Fond sombre avec transparence */
}

/* Style pour le contenu de la lightbox */
.lightbox-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
    width: auto;
    height: auto;
    border-radius: 10px;
}

/* Style pour le bouton de fermeture */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #bbb;
    text-decoration: none;
}