.logo-design {
    background-color:#000;
    padding: 2px;
    color:#fff;
}

.login-wrapper {
    max-width: 420px;
    margin: auto;
}


.dg-nav-item a {
    color:#fff;
}

#dg-active {
    background-color: #FDBB11;
    border-radius: 5px;
}

#dg-active a {
    color:#000;
    padding: 10px;
}

.blog-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #000;
    margin-top:-50px;
}

.blog-content p {
    color: #000;
}

.blog-content img {
    max-width: 100%;
    border-radius: 10px;
    margin: 20px 0;
}

.blog-content blockquote {
    border-left: 4px solid #007bff;
    padding-left: 15px;
    font-style: italic;
    color: #000;
}

.ql-editor pre {
  background: #0b1220; /* ou couleur claire, selon le thème HLJS */
  color: #e6eef6;
  padding: 12px;
  border-radius: 6px;
  overflow: auto;
  font-family: "Fira Code", "Source Code Pro", monospace;
  font-size: 0.95rem;
}

/* si tu utilises le thème "github" de highlight.js, ajuste la couleur */
.ql-editor pre code {
  background: transparent;
  color: inherit;
}

.ql-code-block {
    background: #0b1220; /* ou couleur claire, selon le thème HLJS */
    color: #e6eef6;
    padding: 12px;
    border-radius: 6px;
    overflow: auto;
    font-family: "Fira Code", "Source Code Pro", monospace;
    font-size: 0.95rem;
}

#imageCoverShow {
    height: 500px;
}

/* For media query for all device*/
@media (max-width: 768px) {
    #imageCoverShow {
        height: 300px;
    }
}

#dg-button {
    color:#000;
}

#dg-button:hover {
    color:#fff;
}

.share-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
}
.share-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

/*************/
/* --- Arrière-plan du modal --- */
.video-modal {
    display: none; /* caché par défaut */
    position: fixed;
    z-index: 9999;
    padding-top: 40px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9); /* noir transparent */
    transition: all 0.3s ease-in-out;

}

/* --- Contenu du modal (player vidéo) --- */
.modal-content1 {
    position: relative;
    margin: auto;
    background: transparent;
    border: none;
    width: 90%;
    max-width: 1200px;
    text-align: center;
    animation: zoomIn 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #FDBB11;
    border-radius: 8px;
    flex-direction: column;
    gap: 12px;
}

/* --- Animation d’apparition --- */
@keyframes zoomIn {
    from {transform: scale(0.8); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

/* --- Bouton de fermeture --- */
.close-btn {
    color: #000;
    position: absolute;
    top: -35px;
    right: 0;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    background-color: #FDBB11;
    border-radius: 50%;
    padding: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    color: #FDBB11;
    background-color: #000;
}

/* --- Style de la vidéo --- */
#introVideoPlayer {
    width: 100%;
    height: auto;
    border-radius: 10px;
    outline: none;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* --- Icône Play sur la miniature --- */
.video-thumbnail {
    position: relative;
    cursor: pointer;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 20px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.play-icon:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.exam-intro-ifram {
    width: 100%;
    max-width: 1200px;
    max-height: 500px;
}







