			.gmapcontainer{
				top: 0;
				bottom: 0;
				width: 100%;
				background-color: white;
			}
			.charts-section {
				display: grid;
				grid-template-columns: 1fr;
				align-items: start;
				background-color: white;
			}

			canvas {
				max-width: 100%;
				max-height: 200px;
				margin: 0 !important;  /* Supprime les marges autour des canvas */
				padding: 0 !important; /* Supprime tout padding éventuel */
			}
			
			

			#hover-info {
				width: 100%;
				background: rgba(0, 0, 0, 0.85);
				color: white;
				font-size: 12px;
				font-weight: bold;
				border-radius: 5px;
				margin-bottom: 8px;
				padding: 5px;
				display: flex;
				flex-direction: column; /* On empile les éléments */
			}

			#hover-timestamp {
				width: 100%; /* Toute la largeur */
				text-align: left; /* Aligné à gauche */
				font-size: 24px;
				font-weight: bold;
				color: #ffcc00;
				padding: 0px 10px; /* Espacement du texte */
				margin-bottom: 0px; /* Espace avant le tableau */
			}



			#hover-info th {
				background: rgba(255, 255, 255, 0.2);
				font-weight: bold;
			}

			#hover-info tr:hover {
				background: rgba(255, 255, 255, 0.1);
			}

			/* Zone extra à droite */
			#extra-info {
				min-width: 200px;
				background: rgba(255, 255, 255, 0.1);
				padding: 10px;
				border-radius: 5px;
				text-align: center;
				font-size: 12px;
				color: white;
			}
			
			.hover-header {
				display: flex;
				justify-content: space-between;
				align-items: center;
				background: rgba(0, 0, 0, 0.85);
				padding: 8px 15px;
				border-bottom: 2px solid #ddd;
			}


			/* Toolbar alignée à droite */
			.hover-toolbar {
				display: flex;
				gap: 3px;
				max-width: 100%;
				padding: 2px;
				background: rgba(255, 255, 255, 0.2); /* Effet léger transparent */
				border-radius: 8px;
				backdrop-filter: blur(8px); /* Effet de flou moderne */
			}

			/* Boutons stylisés */
			.toolbar-btn {
				flex: 0 0 36px;
				width: 36px;
				height: 36px;
				border: none;
				background: linear-gradient(145deg, #1e1e1e, #333); /* Fond sombre et moderne */
				color: white;
				border-radius: 5px;
				display: flex;
				align-items: center;
				justify-content: center;
				box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
				transition: all 0.2s ease-in-out;
				cursor: pointer;
			}

			.toolbar-btn:hover {
				background: linear-gradient(145deg, #333, #444);
				transform: scale(1.05);
			}

			/* Icônes bien centrées */
			.toolbar-btn i {
				font-size: 16px;
			}

			.toolbar-btn.active {
				background: #ff9800;
				box-shadow: 0px 0px 8px rgba(255, 152, 0, 0.8);
			}


			@media (max-width: 768px) {
				.hover-toolbar {
					justify-content: flex-start; /* Alignement sur mobile */
					white-space: nowrap;
					padding: 0px;
				}

				.toolbar-btn {
					flex: 0 0 32px; /* Fixe la taille des boutons */
					width: 32px;
					height: 32px;
					font-size: 12px;
				}
			}



			
			
			#hover-container {
				display: flex;
				align-items: flex-start; /* Aligner en haut */
				justify-content: space-between; /* Garder l'espace entre les deux éléments */
				gap: 10px; /* Espace entre la table et le canvas */
				width: 100%;
			}
			
			/* Table prend 80% sur grand écran, minimum 60% sur petits écrans */
			#hover-content {
				flex: 1;
				min-width: 60%;
			}

			#track-container {
				width: 200px;  /* Taille ajustable */
				height: 200px; 
				display: flex;
				max-width: 20%;  /* Sur grand écran, il ne dépasse pas */
				align-items: center;
				justify-content: center;
			}

			#trackCanvas {
				width: 100%;
				height: auto;
				max-height: 200px;
			}
			
			
			/* Sur mobile, réduire la taille */
			@media (max-width: 768px) {
				#hover-content {
					min-width: 55%; /* Réduction de la table */
				}
				#track-container {
					max-width: 18%;
				}
			}


			/* Fix pour les progress bars */
			progress {
				width: 80%; /* Ajuste à la colonne */
				max-width: 80px; /* Empêche qu'elles ne débordent */
				height: 6px;
				display: inline-block;
				vertical-align: middle;
				border-radius: 5px;
			}


			progress::-webkit-progress-bar {
				background-color: #f3f3f3;
				border-radius: 5px;
			}

			progress::-webkit-progress-value {
				background-color: #ff6600;
				border-radius: 5px;
			}

			progress::-moz-progress-bar {
				background-color: #ff6600;
				border-radius: 5px;
			}
			
			/*Partie remplie (Chrome & Safari) */
			progress.colorized::-webkit-progress-value {
				border-radius: 5px;
			}

			/*Partie remplie (Firefox) */
			progress.colorized::-moz-progress-bar {
				border-radius: 5px;
			}
			
			@media only screen and (min-width: 768px) {
				html.fixed .inner-body:fullscreen {
					margin-left: 0 !important;
					border-top: 0 !important;
					margin-top: 0 !important;
					min-height: 100vh !important;
					width: 100vw !important;
				}
			}
			
			#sectors {
				display: flex;
				flex-direction: column;
				justify-content: center;
				align-items: center; 
				text-align: center;
				background-color: rgba(240, 240, 240, 0.9);
				padding: 12px;
				border-radius: 5px;
				box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
				width: 100%; /*Prend toute la largeur disponible */
				max-width: 100%;
			}

			#sectors table {
				width: 100%; /* Le tableau prend toute la largeur disponible */
				border-collapse: collapse;
			}

			#sectors table th, 
			#sectors table td {
				padding: 8px;
				border: 1px solid #ddd; /*Optionnel : ajoute des bordures légères */
				text-align: center;
			}
			#sectorsdiv {
				font-size: 11pt;
				color: black;
			}

			#sectorsdivContent {
				font-size: 11pt;
			}
			#chkDistance {
				transform: scale(1.2); /* Agrandir légèrement */
				margin-left: 7px;
			}
			
			
			
			.main-container {
				display: flex;
				flex-direction: row;
				width: 100%;
				height: auto;
			}

			/* Conteneur des vidéos */
			.video-container {
				display: flex;
				flex-direction: column;
				gap: 10px;
				width: 300px; /* Largeur des vidéos si elles sont présentes */
				transition: width 0.3s ease; /* Animation fluide */
			}

			#chart-container {
				flex-grow: 1; /* Permet aux graphes de prendre toute la place restante */
				transition: width 0.3s ease; /* Animation fluide */
			}

			.full-width {
				width: 100% !important; /* Force le graphe à prendre toute la largeur */
			}

			/* Entête au-dessus de la vidéo */
			.video-header {
				text-align: center;
				padding: 3px;
				font-size: 12px;
				font-weight: bold;
				color: white;
				border-top-left-radius: 8px;
				border-top-right-radius: 8px;
			}



			/* Cadre des vidéos avec bord coloré */
			.video-wrapper {
				width: 100%;
				border-radius: 13px;
				overflow: hidden;
				margin-bottom: 10px;
				position: relative;
				box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
				
			}

			.synced-video {
				width: 100%;
				display: block;
			}

			/* Vidéo ajustée */
			.video-wrapper video {
				width: 100%;
				height: auto;
				display: block;
				border-bottom-left-radius: 8px;
				border-bottom-right-radius: 8px;
			}

			.charts-section {
				flex-grow: 1; /* Les graphiques prennent toute la place restante */
				display: flex;
				flex-direction: column;
			}

			.charts-section canvas {
				width: 100% !important;  /* Force la largeur à s'étendre */
				height: auto !important;
			}

			.buffering-overlay {
				position: absolute;
				top: 0;
				left: 0;
				width: 100%;
				height: 100%;
				background: rgba(0, 0, 0, 0.7);
				color: white;
				font-size: 16px;
				font-weight: bold;
				display: flex;
				align-items: center;
				justify-content: center;
				z-index: 10;
				display: none;
				border-radius: 5px;
			}

			.toggle-btn {
				background-color: #555;
				color: white;
				border: none;
				padding: 8px 12px;
				cursor: pointer;
				border-radius: 4px;
				transition: background-color 0.2s;
			}

			.toggle-btn.active {
				background-color: #ff9800; /* Orange quand activé */
			}

			.hidden {
				display: none !important;
			}


.video-dropdown-container {
    display: flex;
    align-items: center;
    position: relative;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    background: orange;
    border: none;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    z-index: 10;
}

.dropdown-menu button {
    display: block;
    width: 100%;
    padding: 10px;
    text-align: left;
    border: none;
    background: white;
    cursor: pointer;
    font-size: 14px;
}

.dropdown-menu button:hover {
    background: #f2f2f2;
}


/* Bouton principal */
.toggle-btn {
    background-color: #ff9800; /* Orange */
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px 0 0 5px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Bouton flèche dropdown */
.dropdown-arrow {
    background-color: #ff9800;
    color: white;
    border: none;
    padding: 0 0px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 0 5px 5px 0;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
}

/* Effet hover */
.toggle-btn:hover,
.dropdown-arrow:hover {
    background-color: #e68900;
	color: black;
}

/* Menu déroulant */
.dropdown-menu {
    display: none;
    position: absolute;
	color: black;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    width: 180px;
    z-index: 10;
    padding: 5px 0;
}

/* Liste des options */
.dropdown-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-menu li {
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    text-align: left;
}

.dropdown-menu li:hover {
    background: #f0f0f0;
}

/* Style de l'option sélectionnée */
.dropdown-menu li.selected {
    font-weight: bold;
    background: #ff9800;
    color: white;
}


.no-video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    width: 80%;
}


.toggle-video {
	background: linear-gradient(145deg, #1e1e1e, #333);
    border: 2px solid orange; /* Contour orange */
    padding: 8px 8px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px 0 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: orange;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
    box-sizing: border-box; /* Empêche le bouton de grossir */
	
}


/* Quand la vidéo est activée */
.toggle-video.active {
    background: orange; /* Couleur verte quand actif */
    color: white;
}


.video-status {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    display: none;
}


.buffer-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 8px; /* Hauteur de la barre */
    width: 0%; /* Début à 0%, s'ajustera dynamiquement */
    background: rgba(0, 255, 0, 0.7); /* Vert semi-transparent */
    transition: width 0.2s ease-in-out, opacity 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
    text-shadow: 1px 1px 2px black;
    opacity: 0; /* Caché par défaut */
}



@media (max-width: 768px) { /* Mobile */
    .hover-header {
        display: flex;
        flex-direction: column; /* On empile */
        align-items: stretch;
        width: 100%;
    }

    #hover-timestamp {
        order: 1; /* Toujours en premier */
        width: 100%;
        text-align: left;
        padding: 10px;
        background: rgba(0, 0, 0, 0.9);
    }

    .hover-toolbar {
        order: 2; /* Toujours en dessous */
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: left;
        gap: 5px;
        padding: 5px;
        background: rgba(255, 255, 255, 0.1);
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
}