.course-info-widget {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.info-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    padding: 20px;
    background: #f0f0f0be;
    /* Fond gris clair */
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    text-align: center;
    flex: 1;
    /* Pour s'adapter à l'espace disponible */

}

.info-box .label {
    font-weight: bold;
    color: #666;
    font-size: 12px;
}

.info-box .value {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: #47b9ee;
    /* Couleur de fond pour l'icône */
    border-radius: 50%;
    margin-right: 20px;
    color: #fff;
    /* Couleur du texte/icon */
}