/* code couleurs level */
     .color-code {
            font-family: Arial, sans-serif;
            max-width: 300px;
            margin: auto;
            padding: 10px;
            background-color: #f0f0f0;
            border-radius: 8px;
            text-align: center;
        }
        .color-code h4 {
            margin: 0 0 10px;
            font-size: 16px;
        }
        .color-list {
            list-style-type: none;
            padding: 0;
            margin: 0;
        }
        .color-item {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 5px;
            font-size: 14px;
        }
        .color-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin-right: 8px;
            flex-shrink: 0;
        }
        .red { background-color: red; }
        .orange { background-color: orange; }
        .green { background-color: green; }