.vcd-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.vcd-btn-wrap {
	display: inline-block;
}

.vcd-btn {
	display: inline-block;
	padding: 10px 16px;
	border: 1px solid #222;
	background: #222;
	color: #fff !important;
	text-decoration: none !important;
	font-size: 0.95rem;
	line-height: 1.2;
	cursor: pointer;
	font-family: inherit;
}

.vcd-btn-primary {
	background: #222;
}

.vcd-btn-secondary {
	background: #fff;
	color: #222 !important;
	border-color: #222;
}

.vcd-btn-disabled {
	background: #eee;
	border-color: #ccc;
	color: #666 !important;
	cursor: not-allowed;
}

body.vcd-modal-open {
	overflow: hidden;
}

.vcd-modal[hidden] {
	display: none !important;
}

.vcd-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px;
}

.vcd-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}

.vcd-modal-dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 420px;
	background: #fff;
	border: 1px solid #222;
	padding: 22px 20px 18px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.vcd-modal-title {
	margin: 0 0 10px;
	font-size: 1.2rem;
	line-height: 1.3;
}

.vcd-modal-text,
.vcd-modal-sub {
	margin: 0 0 10px;
	color: #333;
	font-size: 0.98rem;
	line-height: 1.45;
}

.vcd-modal-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-end;
	margin-top: 16px;
}
