/**
 * Credit Line My Account Styles
 *
 * @package WooCommerce_Credit_Line
 */

.wc-credit-line-dashboard {
	margin: 20px 0;
}

.credit-summary {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin-bottom: 30px;
}

.summary-box {
	background: #f8f9fa;
	border: 1px solid #dee2e6;
	border-radius: 4px;
	padding: 20px;
	text-align: center;
}

.summary-box h3 {
	margin: 0 0 10px 0;
	font-size: 14px;
	color: #666;
	text-transform: uppercase;
}

.summary-box .amount {
	font-size: 24px;
	font-weight: bold;
	margin: 0;
	color: #2271b1;
}

.summary-box .amount.available {
	color: #28a745;
}

.summary-box .amount.used {
	color: #dc3545;
}

.summary-box .status {
	margin: 0;
	font-weight: bold;
}

.status-active {
	color: #28a745;
}

.status-overdue {
	color: #dc3545;
}

.status-blocked {
	color: #6c757d;
}

.payment-form {
	margin: 20px 0;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 4px;
}

.payment-options {
	margin-bottom: 20px;
}

.payment-options label {
	display: block;
	margin-bottom: 10px;
	padding: 10px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	cursor: pointer;
}

.payment-options label:hover {
	background: #f0f0f0;
}

.payment-options input[type="radio"] {
	margin-right: 10px;
}

.payment-options input[type="number"] {
	margin-left: 10px;
	width: 150px;
}

.wc-credit-line-application {
	margin: 20px 0;
}

.wc-credit-line-application form {
	max-width: 600px;
}

.wc-credit-line-statements {
	margin: 20px 0;
}

