/* Container pour les boutons d'action */
.card-actions {
	position: absolute;
	top: 12px;
	left: 12px;
	right: 12px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	z-index: 100;
	pointer-events: none;
	/* Permet le passage des événements aux enfants */
}

/* Container pour les composants d'action (comme le menu) */
.action-component {
	pointer-events: auto;
	z-index: 150;
	position: relative;
}

/* Styles de base pour les boutons d'action */
.action-button {
	position: relative;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(59, 130, 246, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: rgba(122, 122, 122, 0.7);
	cursor: pointer;
	transition: all 0.3s ease;
	pointer-events: auto;
	backdrop-filter: blur(8px);
}

.action-button:hover {
	background: rgba(59, 130, 246, 1);
	transform: scale(1.1);
	box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
	color: white;
	text-decoration: none;
}

.action-button i {
	font-size: 16px;
	transition: all 0.3s ease;
}

.action-button:hover i {
	transform: rotate(15deg);
}

/* Style pour les boutons avec texte */
.action-button span {
	margin-left: 4px;
	font-size: 12px;
	font-weight: 500;
}

/* Positionnement des boutons */
.action-button.left {
	margin-right: auto;
}

.action-button.right {
	margin-left: auto;
}

.action-button.center {
	margin: 0 auto;
}