:root {
	--cxvlp-bg: #f5f7fa;
	--cxvlp-panel: #ffffff;
	--cxvlp-border: #d8dee8;
	--cxvlp-text: #1f2937;
	--cxvlp-muted: #6b7280;
	--cxvlp-accent: #0d9488;
	--cxvlp-accent-dark: #0f766e;
	--cxvlp-error: #b91c1c;
	--cxvlp-success: #166534;
}

.cxvlp-wrap {
	max-width: 1100px;
	margin: 24px auto;
	padding: 0 12px;
	color: var(--cxvlp-text);
}

.cxvlp-panel {
	background: var(--cxvlp-panel);
	border: 1px solid var(--cxvlp-border);
	border-radius: 10px;
	padding: 16px;
	margin-bottom: 16px;
}

.cxvlp-panel h2,
.cxvlp-panel h3,
.cxvlp-panel h4 {
	margin: 0 0 12px;
}

.cxvlp-row-between {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.cxvlp-row-inline {
	display: flex;
	align-items: center;
	gap: 8px;
}

.cxvlp-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.cxvlp-card {
	border: 1px solid var(--cxvlp-border);
	border-radius: 8px;
	padding: 12px;
	background: #fcfdff;
}

.cxvlp-card-label {
	font-size: 13px;
	color: var(--cxvlp-muted);
}

.cxvlp-card-value {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	margin-top: 4px;
}

.cxvlp-card-meta {
	font-size: 12px;
	color: var(--cxvlp-muted);
	margin-top: 4px;
}

.cxvlp-table-wrap {
	overflow-x: auto;
}

.cxvlp-table {
	width: 100%;
	border-collapse: collapse;
}

.cxvlp-table th,
.cxvlp-table td {
	border: 1px solid var(--cxvlp-border);
	padding: 8px;
	text-align: left;
	vertical-align: top;
}

.cxvlp-table th {
	background: #f8fafc;
	font-weight: 600;
}

.cxvlp-badge {
	display: inline-block;
	font-size: 12px;
	padding: 2px 8px;
	border-radius: 999px;
	background: #eef2ff;
	border: 1px solid #dbe4ff;
}

.cxvlp-grid-2 {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.cxvlp-box {
	border: 1px solid var(--cxvlp-border);
	border-radius: 8px;
	padding: 12px;
	background: #fcfdff;
}

.cxvlp-help {
	font-size: 13px;
	color: var(--cxvlp-muted);
	background: #f8fafc;
	border: 1px dashed var(--cxvlp-border);
	padding: 8px;
	border-radius: 6px;
	margin-bottom: 10px;
}

.cxvlp-inline-form {
	display: flex;
	gap: 8px;
	align-items: end;
	flex-wrap: wrap;
}

.cxvlp-inline-form label {
	display: block;
	font-size: 13px;
	color: var(--cxvlp-muted);
}

.cxvlp-notice {
	padding: 10px 12px;
	border-radius: 6px;
	margin-bottom: 12px;
	font-size: 14px;
}

.cxvlp-notice-error {
	background: #fef2f2;
	color: var(--cxvlp-error);
	border: 1px solid #fecaca;
}

.cxvlp-notice-success {
	background: #f0fdf4;
	color: var(--cxvlp-success);
	border: 1px solid #bbf7d0;
}

.cxvlp-btn {
	display: inline-block;
	padding: 8px 12px;
	border-radius: 6px;
	border: 1px solid var(--cxvlp-border);
	background: #fff;
	color: var(--cxvlp-text);
	text-decoration: none;
	cursor: pointer;
}

.cxvlp-btn-primary {
	background: var(--cxvlp-accent);
	border-color: var(--cxvlp-accent);
	color: #fff;
}

.cxvlp-btn-primary:hover {
	background: var(--cxvlp-accent-dark);
	border-color: var(--cxvlp-accent-dark);
	color: #fff;
}

.cxvlp-panel input[type="text"],
.cxvlp-panel input[type="email"],
.cxvlp-panel input[type="password"],
.cxvlp-panel input[type="number"],
.cxvlp-panel input[type="file"],
.cxvlp-panel select,
.cxvlp-panel textarea {
	width: 100%;
	max-width: 420px;
	padding: 7px 8px;
	border: 1px solid var(--cxvlp-border);
	border-radius: 6px;
}

.cxvlp-panel textarea {
	max-width: 100%;
}

@media (max-width: 860px) {
	.cxvlp-cards,
	.cxvlp-grid-2 {
		grid-template-columns: 1fr;
	}
}
