.formation-card {
            background: white;
            margin-bottom: 30px;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .formation-title {
            font-size: 20px;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
            border-bottom: 2px solid #a12a5e;
            padding-bottom: 10px;
        }

        .pie-chart {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
        }

        .percentage {
            color: white;
            font-size: 16px;
            font-weight: bold;
            z-index: 1;
        }

        .indicator-title {
            font-size: 12px;
            color: #666;
            font-weight: 500;
            text-align: center;
        }

        .indicator-col {
            margin-bottom: 20px;
        }
	.row.ms-3.me-3 p:empty {
  	    display: none;
	}
        @media (max-width: 576px) {
            .pie-chart {
                width: 80px;
                height: 80px;
            }
            .percentage {
                font-size: 14px;
            }
            .indicator-title {
                font-size: 11px;
            }
        }