/**
 * Public-facing styles for the plugin.
 *
 * @package    Review_Reminder
 * @subpackage Review_Reminder/public/css
 */

.review-reminder-widget {
	padding: 20px;
	background: #f9f9f9;
	border: 1px solid #ddd;
	border-radius: 4px;
	margin-bottom: 20px;
}

.review-reminder-widget h3 {
	margin-top: 0;
}

/* Claim Form Styles */
.review-reminder-claim-form-wrapper {
	max-width: 600px;
	margin: 0 auto;
}

.review-reminder-form-group {
	margin-bottom: 20px;
}

.review-reminder-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #333;
}

.review-reminder-input {
	width: 100%;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	/* Ensure padding doesn't affect width */
	font-size: 16px;
}

.review-reminder-input:focus {
	border-color: #0073aa;
	outline: none;
	box-shadow: 0 0 0 1px #0073aa;
}

.review-reminder-order-info {
	background-color: #e7f5fe;
	color: #31708f;
	padding: 15px;
	border-radius: 4px;
	border: 1px solid #bce8f1;
	margin-bottom: 20px;
}

.review-reminder-form-actions {
	margin-top: 20px;
}

.review-reminder-button {
	display: inline-block;
	padding: 12px 24px;
	background: #0073aa;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	transition: background 0.3s ease;
	border: none;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
}

.review-reminder-button:hover {
	background: #005177;
	color: #fff;
}