/**
 * WC Key Stock Manager - Frontend Styles
 *
 * Styles for My Account pages and custom order received page.
 */

/* My Account - Keys Display */
.wc-ksm-account-keys {
	margin-top: 20px;
	padding: 20px;
	border: 2px solid #2271b1;
	border-radius: 8px;
	background: #f0f6fc;
}

.wc-ksm-account-keys h3 {
	margin-top: 0;
	color: #2271b1;
}

.wc-ksm-account-notice {
	margin-top: 20px;
	padding: 15px;
	border: 1px solid #f0ad4e;
	border-radius: 8px;
	background: #fff9e6;
}

.wc-ksm-account-notice h3 {
	margin-top: 0;
	color: #856404;
}

/* Order Received Page */
.wc-ksm-order-received {
	max-width: 1200px;
	margin: 0 auto;
}

.wc-ksm-thank-you-header {
	text-align: center;
	padding: 30px 20px;
	background: #f0f6fc;
	border-radius: 10px;
	margin-bottom: 30px;
}

.wc-ksm-thank-you-header h1 {
	color: #2271b1;
	margin: 0 0 10px 0;
}

.wc-ksm-status-boxes {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-bottom: 30px;
}

.wc-ksm-status-box {
	padding: 20px;
	border: 2px solid #ddd;
	border-radius: 8px;
	background: #fff;
}

.wc-ksm-status-box h3 {
	margin: 0 0 10px 0;
	color: #333;
	font-size: 16px;
}

.wc-ksm-keys-section {
	padding: 25px;
	border: 2px solid #2271b1;
	border-radius: 10px;
	background: #f0f6fc;
	margin-bottom: 30px;
}

.wc-ksm-keys-section h2 {
	margin: 0 0 20px 0;
	color: #2271b1;
}

.wc-ksm-processing-message {
	padding: 25px;
	border: 2px solid #f0ad4e;
	border-radius: 10px;
	background: #fff9e6;
	margin-bottom: 30px;
}

.wc-ksm-processing-message h2 {
	margin: 0 0 15px 0;
	color: #856404;
}

.wc-ksm-completed-message {
	padding: 25px;
	border: 2px solid #00a32a;
	border-radius: 10px;
	background: #f0fff4;
	margin-bottom: 30px;
}

.wc-ksm-completed-message h2 {
	margin: 0 0 15px 0;
	color: #00a32a;
}

.wc-ksm-order-details,
.wc-ksm-customer-details {
	padding: 25px;
	border: 2px solid #ddd;
	border-radius: 10px;
	background: #fff;
	margin-bottom: 30px;
}

.wc-ksm-order-details h2,
.wc-ksm-customer-details h2 {
	margin: 0 0 20px 0;
	color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
	.wc-ksm-status-boxes {
		grid-template-columns: 1fr;
	}

	.wc-ksm-thank-you-header {
		padding: 20px 15px;
	}

	.wc-ksm-keys-section,
	.wc-ksm-processing-message,
	.wc-ksm-completed-message,
	.wc-ksm-order-details,
	.wc-ksm-customer-details {
		padding: 15px;
	}
}

/* Print Styles */
@media print {
	.wc-ksm-order-received {
		max-width: 100%;
	}

	.wc-ksm-thank-you-header {
		background: #fff;
		border: 1px solid #000;
	}

	.button {
		display: none;
	}
}
