        /* Conteneur des onglets */
        #followUpTab {
            border-bottom: 3px solid #182a55; /* Ligne bleue sous les onglets */
            margin-bottom: 20px;
        }

        /* Style par défaut des onglets (inactifs) */
        #followUpTab .nav-link {
            color: #495057;
            background-color: #e9ecef; /* Gris clair */
            border: 1px solid #dee2e6;
            border-bottom: none;
            margin-right: 4px;
            border-radius: 8px 8px 0 0; /* Coins arrondis en haut */
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 12px 20px; /* Plus d'espace */
        }

        /* Au survol de la souris */
        #followUpTab .nav-link:hover {
            background-color: #dbe2e8;
            color: #182a55;
            transform: translateY(-2px); /* Petit effet de levier */
        }

        /* Style de l'onglet ACTIF (Sélectionné) */
        #followUpTab .nav-link.active {
            color: #ffffff !important; /* Texte blanc */
            background-color: #182a55 !important; /* Fond Bleu Foncé */
            border-color: #182a55;
            font-weight: bold;
            box-shadow: 0 -4px 8px rgba(0,0,0,0.1); /* Ombre subtile */
        }
        
        /* Style des icônes dans les onglets */
        #followUpTab .nav-link i {
            margin-right: 8px;
        }

		/* Style personnalisé pour le sélecteur de date */
		.followup-select {
            background-color: #fff;
            border: 2px solid #182a55; /* Même bleu que les onglets */
            color: #182a55;
            padding: 0px 12px;
            font-size: 0.9em; /* Un peu plus petit que le H2 */
            font-weight: 600;
            border-radius: 20px; /* Forme arrondie "capsule" */
            cursor: pointer;
            outline: none;
            transition: all 0.3s ease;
            appearance: none; /* Supprime le style par défaut du navigateur (optionnel) */
            -webkit-appearance: none;
            -moz-appearance: none;
            
            /* Petite flèche personnalisée (encodée en base64 pour éviter une image externe) 
               Si cela ne s'affiche pas bien, supprimez les lignes 'background-image' jusqu'à 'background-size' */
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23182a55' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 10px center;
            background-size: 16px;
            padding-right: 40px; /* Espace pour la flèche */
        }

        .followup-select:hover {
            background-color: #f0f4f8;
        }

        .followup-select:focus {
            box-shadow: 0 0 0 3px rgba(24, 42, 85, 0.2);
        }

		.followup-alert {
            display: inline-block;
            padding: 5px 15px;
            border-radius: 25px;
            font-weight: bold;
            font-size: 0.9em;
            margin-right: 10px;
            margin-bottom: 15px;
            text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
        }
        
        .alert-diabete {
            background-color: #ffe082; /* Jaune doux */
            color: #6d4c41; /* Texte marron/foncé */
            border: 1px solid #ffcc80;
        }
        
        .alert-cancer {
            background-color: #ef9a9a; /* Rouge doux */
            color: firebrick; /* Texte rouge vif */
            border: 1px solid #e57373;
        }

		/* Amélioration visuelle des checkboxes dans la section détails */
		.detailedOtherCancer_sub .custom-control-label {
			cursor: pointer;
			padding-left: 5px;
			font-size: 0.95em;
			color: #495057;
		}
		.detailedOtherCancer_sub .custom-checkbox .custom-control-input:checked ~ .custom-control-label {
			color: #182a55;
			font-weight: 600;
		}
		.cancer-grid, .selection-grid {
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
			gap: 5px;
			margin-top: 5px;
		}
		.selection-grid-cardioperso {
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
			gap: 5px;
			margin-top: 5px;
		}
		.cancer-tile, .selectable-tile {
			position: relative;
			background: #ffffff;
			border: 2px solid #dee2e6;
			border-radius: 12px;
			padding: 8px;
			text-align: center;
			cursor: pointer;
			transition: all 0.3s ease;
			display: flex;
			align-items: center;
			justify-content: center;
			min-height: 30px;
			font-weight: 500;
			color: #495057;
			font-size: 14px;
		}
		.cancer-tile:hover, .selectable-tile:hover {
			border-color: #182a55;
			background-color: #f0f4f8;
			transform: translateY(-2px);
			box-shadow: 0 4px 8px rgba(0,0,0,0.1);
		}
		/* Style quand la case est cochée */
		.cancer-check:checked + .cancer-tile, .hidden-check:checked + .selectable-tile {
			background-color: #182a55;
			border-color: #182a55;
			color: #ffffff;
			box-shadow: 0 4px 12px rgba(24, 42, 85, 0.3);
		}

		/* Masquer la checkbox réelle mais la garder accessible */
		.cancer-check, .hidden-check {
			position: absolute;
			opacity: 0;
			cursor: pointer;
			height: 0;
			width: 0;
		}