/* Loyalty Points Frontend Styles */

.latepoint-loyalty-points-widget {
	margin-bottom: 20px;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.latepoint-loyalty-points-widget .points-balance,
.latepoint-loyalty-points-widget .points-earned,
.latepoint-loyalty-points-widget .points-expiring {
	text-align: center;
}

.latepoint-loyalty-points-redemption {
	margin-top: 20px;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 8px;
}

.latepoint-loyalty-points-redemption h4 {
	margin: 0 0 10px 0;
	color: #2d3748;
}

.latepoint-loyalty-points-redemption p {
	margin: 0 0 15px 0;
	color: #666;
}

.latepoint-modal {
	display: none;
	position: fixed;
	z-index: 10000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.4);
}

.latepoint-modal-content {
	background-color: #fefefe;
	margin: 5% auto;
	padding: 0;
	border: 1px solid #888;
	width: 90%;
	max-width: 600px;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.latepoint-modal-header {
	padding: 20px;
	border-bottom: 1px solid #e2e8f0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.latepoint-modal-header h3 {
	margin: 0;
	color: #2d3748;
}

.latepoint-modal-close {
	color: #aaa;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
}

.latepoint-modal-close:hover,
.latepoint-modal-close:focus {
	color: #000;
}

.latepoint-modal-body {
	padding: 20px;
}

.points-stat-box {
	padding: 20px;
	background: #f8f9fa;
	border-radius: 8px;
	text-align: center;
	margin-bottom: 20px;
}

.stat-label {
	color: #666;
	margin-bottom: 10px;
	font-size: 14px;
}

.stat-value {
	font-weight: bold;
}

