        body {
            font-family: Arial, sans-serif;
            margin: 20px;
            padding: 0;
            line-height: 1.6;
            background-color: #f9f9f9;
            color: #333;
        }

        h1 {
            color: #2895b2;
            text-align: center;
        }

        .form-container {
            background: #ffffff;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            max-width: 500px;
            margin: 40px auto;
        }

        label {
            display: block;
            margin-bottom: 10px;
            font-weight: bold;
        }

        input[type="file"] {
            display: block;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            margin-bottom: 20px;
        }

        input[type="submit"] {
            background: #2895b2;
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
        }

        input[type="submit"]:hover {
            background: #45a049;
        }

        .instructions {
            font-size: 14px;
            color: #666;
            margin-bottom: 10px;
			text-align:center;
        }

        #results-container {
            margin-top: 20px;
            background: #ffffff;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        #results-container.hidden {
            display: none;
        }

        #loading {
            display: none;
            text-align: center;
            margin-top: 10px;
        }

        .spinner {
            border: 4px solid rgba(0, 0, 0, 0.1);
            width: 24px;
            height: 24px;
            border-radius: 50%;
            border-left-color: #2895b2;
            animation: spin 1s linear infinite;
            display: inline-block;
            margin-right: 10px;
        }

        @keyframes spin {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        table {
            border-collapse: collapse;
            margin: 0 auto;
            max-width: 90%;
            table-layout: auto;
        }

        th, td {
            border: 1px solid #ddd;
            padding: 6px 10px;
            text-align: right;
            font-size: 14px;
        }

        th {
            cursor: pointer;
            background-color: #f1f1f1;
            font-weight: bold;
        }

        table tbody tr:hover {
            background-color: #f9f9f9;
        }

		#table-title {
			text-align: center;
			font-size: 18px; /* Optionnel : ajustez la taille de la police */
			font-weight: bold; /* Optionnel : mettez le texte en gras */
			margin-top: 20px; /* Optionnel : ajoutez un espacement au-dessus */
			margin-bottom: 20px; /* Optionnel : ajoutez un espacement au-dessous */
		}

		#table-footer {
			text-align: center;
			font-size: 16px; /* Optionnel : ajustez la taille de la police */
			font-weight: bold; /* Optionnel : mettez le texte en gras */
			margin-top: 20px; /* Optionnel : ajoutez un espacement au-dessus */
			color: #333; /* Optionnel : couleur du texte */
		}

		th {
			cursor: pointer;
			position: relative;
			padding-right: 20px; /* Ajoutez de l'espace entre le titre et la flèche */
		}

		th.sorted-asc::after {
			content: "▲";
			position: absolute;
			right: 5px; /* Positionne la flèche à droite */
			font-size: 12px;
		}

		th.sorted-desc::after {
			content: "▼";
			position: absolute;
			right: 5px; /* Positionne la flèche à droite */
			font-size: 12px;
		}

		tr.total .cadence-col {
			text-align: right; /* Centre uniquement la cellule "Total" */
			font-weight: bold;  /* Optionnel : met le texte en gras */
		}

        /* Effet hover pour le bouton "Télécharger l'image du tableau" */
        #download-image {
            background-color: #2895b2;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        #download-image:hover {
            background-color: #4CAF50; /* Rouge au survol */
        }

		th.count-col {
			background-color: #2895b2; /* Couleur de fond rouge */
			color: white;          /* Couleur du texte en blanc pour une meilleure lisibilité */
			font-weight: bold;     /* Rendre le texte plus visible (optionnel) */
		}

		th.cadence-col {
			background-color: #2895b2; /* Couleur de fond rouge */
			color: white;          /* Couleur du texte en blanc pour une meilleure lisibilité */
			font-weight: bold;     /* Rendre le texte plus visible (optionnel) */
		}

      /* Style du texte principal */
        img.help-icon {
            width: 32px;
            height: 32px;
            margin-left: 8px;
            vertical-align: top;
            cursor: pointer;
        }

        /* Style de l'encart d'aide */
        .help-box {
            display: none; /* Caché par défaut */
            margin-top: 20px;
            padding: 15px;
            background-color: #f8f9fa; /* Couleur de fond douce */
            border: 1px solid #ddd; /* Bordure grise */
            border-radius: 5px;
            font-size: 14px;
            color: #333;
            max-width: 550px; /* Largeur maximale de l'encart */
            width: 85%; /* Largeur flexible (80% de la page) */
            position: relative; /* Position relative pour ajuster le centrage */
            left: 50%; /* Décalage horizontal */
            transform: translateX(-50%); /* Centre l'encart horizontalement */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Légère ombre portée */
        }

        /* Bouton pour fermer l'encart */
        .close-help {
            float: right;
            cursor: pointer;
            color: #007BFF;
            font-weight: bold;
            text-decoration: none;
        }

        .close-help:hover {
            text-decoration: underline;
        }

		.centered-image { /*images dans l'encart d'aide */
        display: block; /* Transforme l'image en bloc */
        margin: 10px auto; /* Centre horizontalement avec des marges verticales de 10px */
        border: 1px solid black; /* Ajoute un cadre noir fin */
        max-width: 100%; /* Rend l'image responsive */
        height: auto; /* Conserve les proportions de l'image */
		}


		.language-selector {
		text-align: right;
		margin: 10px 0;
	}

	.language-selector a {
		color: #2895b2;
		text-decoration: none;
		margin: 0 5px;
		font-weight: bold;
	}

	.language-selector a:hover {
		text-decoration: underline;
	}