.dbk-widget {
	--dbk-accent: #0e7c86;
	max-width: 480px;
	margin: 0 auto;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	border: 1px solid #e2e2e2;
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	box-sizing: border-box;
}

.dbk-widget * {
	box-sizing: border-box;
}

.dbk-widget h3 {
	margin: 0 0 16px;
	font-size: 1.25rem;
	color: #222;
}

.dbk-step {
	display: none;
}

.dbk-step.dbk-active {
	display: block;
}

.dbk-field {
	margin-bottom: 16px;
}

.dbk-field label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
	font-size: 0.95rem;
	color: #333;
}

.dbk-field input[type="date"],
.dbk-field input[type="text"],
.dbk-field input[type="tel"],
.dbk-field select,
.dbk-field textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 1rem;
}

.dbk-field textarea {
	resize: vertical;
	min-height: 60px;
}

.dbk-btn {
	display: inline-block;
	background: var(--dbk-accent);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 12px 20px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	width: 100%;
}

.dbk-btn:hover {
	opacity: 0.9;
}

.dbk-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.dbk-btn-link {
	background: none;
	color: var(--dbk-accent);
	width: auto;
	padding: 8px 0;
	font-weight: 600;
	text-decoration: underline;
}

.dbk-slots {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	margin-bottom: 16px;
}

.dbk-slot-btn {
	padding: 10px 6px;
	border: 1px solid var(--dbk-accent);
	background: #fff;
	color: var(--dbk-accent);
	border-radius: 8px;
	font-size: 0.9rem;
	cursor: pointer;
	text-align: center;
}

.dbk-slot-btn:hover,
.dbk-slot-btn.dbk-selected {
	background: var(--dbk-accent);
	color: #fff;
}

.dbk-message {
	padding: 12px 14px;
	border-radius: 8px;
	margin-bottom: 16px;
	font-size: 0.95rem;
}

.dbk-message.dbk-error {
	background: #fdeaea;
	color: #a10000;
}

.dbk-message.dbk-success {
	background: #e7f6ec;
	color: #1a6b3c;
}

.dbk-message.dbk-info {
	background: #eef6f8;
	color: #0e5a63;
}

.dbk-loading,
.dbk-empty {
	color: #666;
	font-size: 0.95rem;
}

.dbk-summary {
	background: #f7f7f7;
	border-radius: 8px;
	padding: 12px 14px;
	margin-bottom: 16px;
	font-size: 0.95rem;
}

.dbk-summary strong {
	color: #222;
}
