.ladytech-vote-card {
	background-color: #f8f9fa;
	border-radius: 8px;
	padding: 20px;
	margin: 30px 0;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	text-align: center;
	border: 1px solid #e9ecef;
	transition: all 0.3s ease;
}

.ladytech-vote-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.ladytech-vote-card h3 {
	color: #343a40;
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 600;
}

.ladytech-vote-buttons {
	display: flex;
	justify-content: center;
	gap: 30px;
}

.ladytech-vote-buttons button {
	background: none;
	border: none;
	padding: 10px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: all 0.3s ease;
	position: relative;
	outline: none;
}

.ladytech-vote-buttons button:hover {
	transform: scale(1.1);
}

.ladytech-vote-buttons button i {
	font-size: 32px;
	margin-bottom: 5px;
	transition: all 0.3s ease;
}

.ladytech-vote-up i {
	color: #4caf50;
}

.ladytech-vote-down i {
	color: #f44336;
}

.ladytech-vote-count {
	font-weight: bold;
	font-size: 14px;
	background-color: #e9ecef;
	border-radius: 20px;
	padding: 3px 10px;
	min-width: 30px;
	display: inline-block;
	text-align: center;
}

.ladytech-vote-up.voted i {
	color: #4caf50;
	filter: drop-shadow(0 0 3px rgba(76, 175, 80, 0.5));
	animation: pulse 1s;
}

.ladytech-vote-down.voted i {
	color: #f44336;
	filter: drop-shadow(0 0 3px rgba(244, 67, 54, 0.5));
	animation: pulse 1s;
}

.ladytech-vote-message {
	margin-top: 15px;
	padding: 8px;
	font-size: 14px;
	border-radius: 4px;
	background-color: #e3f2fd;
	display: none;
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.2);
	}
	100% {
		transform: scale(1);
	}
}

@media screen and (max-width: 480px) {
	.ladytech-vote-buttons {
		gap: 15px;
	}

	.ladytech-vote-buttons button i {
		font-size: 24px;
	}
}
