/* Container principal pour la face arrière */
.candidate-back-content {
	padding: 24px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/* Header */
.candidate-header {
	text-align: center;
	margin-bottom: 24px;
}

.candidate-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1f2937;
	margin: 0;
}

/* Informations du candidat */
.candidate-info {
	flex: 1;
}


/* Désactiver le swiper-card-footer qui bloque les événements */
.swiper-card-footer {
	pointer-events: none !important;
}

/* Réactiver pour nos éléments spécifiques */
.candidate-back-content {
	pointer-events: auto !important;
}

/* Boutons d'action - Plus élevé que swiper-card-footer (z-index: 5) */
.candidate-action-buttons {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100px;
	z-index: 10 !important;
	pointer-events: auto !important;
	background: rgba(255, 255, 255, 0.95);
	border-top: 1px solid #e0e0e0;
	padding: 15px;
}

.candidate-action-buttons .btn {
	margin: 0 2px;
	flex: 1;
	text-align: center;
	z-index: 11 !important;
	pointer-events: auto !important;
	position: relative !important;
}

/* Styles pour les boutons spécifiques */
.candidate-view-button {
	background-color: #2563eb;
	color: white;
	border-color: #2563eb;
}

.candidate-view-button:hover {
	background-color: #1d4ed8;
	border-color: #1d4ed8;
}

.candidate-view-button:focus {
	box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05), 0 0 0 4px rgba(59, 130, 246, 0.3);
}
