.mm-lms-button-progression {
    background-color: #4acae0;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;    
    border-radius: 12px;
}

.mm-lms-menu {    
    padding: 10px 0;
}

.mm-lms-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.mm-lms-menu ul li {
    margin: 0 10px;
}

.mm-lms-menu ul li img {
    max-width: 100px;
    height: auto;
    border-radius: 5px;    
}

@media (max-width: 768px) {
    .mm-lms-menu ul li img {
        max-width: 50px;
    }
}

.mm-lms-menu-progress-bar {
    width: 100%;
    max-width: 50px; 
    height: 50px; 
    position: relative; 
    display: flex;
    justify-content: center;
    align-items: center; 
    margin: 10px auto; 
}

.mm-lms-menu-grayscale {
    filter: grayscale(100%); /* Applique un filtre de 100% de gris */
    opacity: 0.7; /* Facultatif : ajuste l'opacité pour un effet visuel supplémentaire */
}


.mm-lms-menu-progress {
    max-width: 100%; 
    max-height: 100%;
    display: block; 
}

@media (max-width: 768px) {
    .mm-lms-menu-progress {
        max-width: 50%; 
        max-height: 50%;
    }
}

.mm-lms-module-bought a {
    outline: none;
    border: none;
}

.mm-lms-module-bought:focus a {
    outline: none;
    border: none;
}

#mm-lms-fullscreen-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.mm-lms-fullscreen-popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 50%;
    max-height: 90%;
    text-align: center;
}

.mm-lms-popup-buttons {
    display: flex;
    justify-content:center;
    margin-top: 20px;    
    align-items: center;
    flex-wrap: wrap;
}

.mm-lms-popup-button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

#mm-lms-go-to-map {
    background-color: #007bff;
    color: white;
}

#mm-lms-go-to-map:hover {
    background-color: #0056b3;
}

.mm-lms-close-popup {
    background-color: #dc3545;
    color: white;
}

.mm-lms-close-popup:hover {
    background-color: #c82333;
}