.evaluat.Categorie {
    display: flex;
    flex-direction: column; /* Pour empiler les catégories verticalement */
}

.category-item {
    display: flex;
    justify-content: space-between; /* Espace entre la catégorie et la sous-catégorie */
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc; /* Bordure pour le rectangle */
    border-radius: 5px; /* Coins arrondis */
}

.category-name {
    font-weight: bold; /* Mettre en gras le nom de la catégorie */
}

.subcategory-name {
    color: #777; /* Couleur grise pour la sous-catégorie */
}

		/* Container des boutons */
		.button-container {
			padding: 20px 0;
			margin-bottom: 20px;
		}
	
		/* Style général des boutons */
		.mybtn1 {
			padding: 12px 35px;
			margin: 0 10px;
			font-size: 16px;
			font-weight: 500;
			border: 2px solid #1e3c72;
			border-radius: 30px;
			cursor: pointer;
			transition: all 0.3s ease;
			background: white;
			color: #1e3c72;
			box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
		}
	
		/* Style du bouton actif */
		.mybtn1.active {
			background: #1e3c72;
			color: white;
			box-shadow: 0 5px 15px rgba(30, 60, 114, 0.2);
		}
	
		/* Effet hover sur les boutons */
		.mybtn1:hover {
			transform: translateY(-2px);
			box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
		
		}
	
		/* Animation au clic */
		.mybtn1:active {
			transform: translateY(1px);
		}
	
		/* Style pour les écrans mobiles */
		@media (max-width: 768px) {
			.mybtn1 {
				padding: 10px 25px;
				margin: 5px;
				font-size: 14px;
			}
		}
	
		/* Maintenir les styles existants pour les champs select */
		.input-field select {
			width: 100%;
			height: 50px;
			padding: 0 20px;
			border: 1px solid #ddd;
			border-radius: 3px;
		}
	
    /* Style pour les options de genre */
    .gender-options {
        display: flex;
        align-items: center;
        gap: 30px;
        padding: 15px 0;
        margin-bottom: 20px;
        border-bottom: 1px solid #eee;
    }

    .gender-option {
        display: flex;
        align-items: center;
        position: relative;
    }

    .gender-option input[type="radio"] {
        position: relative;
        appearance: none;
        width: 18px;
        height: 18px;
        border: 2px solid #ddd;
        border-radius: 50%;
        margin-right: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .gender-option input[type="radio"]:checked {
        border-color: #1e3c72;
    }

    .gender-option input[type="radio"]:checked::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 10px;
        height: 10px;
        background: #1e3c72;
        border-radius: 50%;
    }

    .gender-option label {
        display: flex;
        align-items: center;
        cursor: pointer;
        font-weight: 500;
        color: #666;
    }

    .gender-option i {
        margin-right: 8px;
        font-size: 20px;
    }

    .gender-option .fa-female {
        color: #FF4081;
    }

    .gender-option .fa-male {
        color: #2196F3;
    }
	#iconContainer {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

#iconContainer i {
    font-size: 45px;
	padding-bottom: 20px;
    color: #296aab;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

#iconContainer i.selected {
    color: #28a745;
    transform: scale(1.2);
}
.itemcategorie{
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 20px; /* Ajuster le padding pour occuper toute la largeur */
    margin: 15px 0; /* Espacement réduit entre les éléments */
    background-color: #fbfbfb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;

    color: #333;
}
.itemcategorie.filled-category {
    background-color: #d1e7dd; /* Vert clair pour indiquer que c'est rempli */
    color: #0f5132; /* Texte en vert foncé */
   
}


