/* Custom Card Styles */

.us {
	border: none;
	border-radius: 10px;
	background: linear-gradient(to bottom right, #ffffff, #f8f9fa);
	transition: transform 0.3s ease;
}

.us:hover {
	background: linear-gradient(to bottom right, #f0f5ac, #dcd744);
	transform: translateY(-5px);
}

.card-title {
	font-family: "Poppins", sans-serif;
	font-size: 1.25rem;
	margin-bottom: 20px;
}

.card-content p {
	font-size: 0.95rem;
	color: #555;
}

.card-content p strong {
	color: #333;
}

.shadow-sm {
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Custom Badge Style for Status */
.badge {
	padding: 0.35em 0.7em;
	font-size: 0.85rem;
	border-radius: 12px;
}

.badge.bg-success {
	background-color: #28a745;
}

.badge.bg-warning {
	background-color: #ffc107;
}

.badge.bg-danger {
	background-color: #dc3545;
}
