.dsm-search-wrap {
	max-width: 900px;
	margin: 20px 0;
	font-family: Arial, sans-serif;
}

.dsm-search-form {
	display: grid;
	grid-template-columns: 1fr 2fr auto;
	gap: 12px;
	background: #f6f7f7;
	padding: 16px;
	border: 1px solid #dcdcde;
	border-radius: 6px;
}

.dsm-field {
	display: flex;
	flex-direction: column;
}

.dsm-field label {
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 6px;
}

.dsm-field input,
.dsm-field select {
	height: 38px;
	padding: 6px 10px;
	border: 1px solid #c3c4c7;
	border-radius: 4px;
}

.dsm-field-button {
	justify-content: flex-end;
}

.dsm-field button {
	height: 38px;
	padding: 0 16px;
	background: #2271b1;
	color: #fff;
	border: 0;
	border-radius: 4px;
	cursor: pointer;
}

.dsm-result {
	margin-top: 16px;
	background: #fff;
	border: 1px solid #dcdcde;
	border-radius: 6px;
	padding: 16px;
}

.dsm-result table {
	width: 100%;
	border-collapse: collapse;
}

.dsm-result th,
.dsm-result td {
	text-align: left;
	padding: 8px;
	border-bottom: 1px solid #f0f0f1;
	vertical-align: top;
}

.dsm-result-empty {
	background: #fff8e5;
	border-color: #e5c982;
}

.dsm-history {
	margin-top: 12px;
}

.dsm-history-item {
	padding: 10px 0;
	border-bottom: 1px dashed #dcdcde;
}

.dsm-history-table-wrap {
	overflow-x: auto;
	margin-top: 12px;
}

.dsm-history-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.dsm-history-table th,
.dsm-history-table td {
	text-align: left;
	padding: 8px;
	border-bottom: 1px solid #f0f0f1;
	vertical-align: top;
}

.dsm-history-table th {
	font-weight: 600;
	background: #f6f7f7;
}

@media (max-width: 768px) {
	.dsm-search-form {
		grid-template-columns: 1fr;
	}
}
