.rdg-app {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: #0f172a;
}

.rdg-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
	max-width: 760px;
}

.rdg-card__header {
	margin-bottom: 12px;
}

.rdg-title {
	margin: 0 0 6px;
	font-size: 26px;
}

.rdg-intro {
	margin: 0;
	color: #475569;
}

.rdg-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 14px;
	margin: 18px 0;
}

.rdg-field label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
}

.rdg-field select {
	width: 100%;
	padding: 10px 12px;
	font-size: 15px;
	border-radius: 10px;
	border: 1px solid #cbd5e1;
	background: #f8fafc;
}

.rdg-field select:focus {
	outline: 2px solid #2563eb;
	border-color: #2563eb;
	background: #ffffff;
}

.rdg-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 14px;
}

.rdg-button {
	border: none;
	border-radius: 10px;
	padding: 11px 16px;
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
	transition: transform 0.08s ease, box-shadow 0.15s ease, background-color 0.2s ease;
}

.rdg-button--primary {
	background: linear-gradient(120deg, #2563eb, #1d4ed8);
	color: #ffffff;
	box-shadow: 0 10px 22px rgba(37, 99, 235, 0.25);
}

.rdg-button:hover {
	transform: translateY(-1px);
}

.rdg-alert {
	min-height: 20px;
	font-weight: 600;
	color: #0f172a;
	margin-bottom: 12px;
}

.rdg-results {
	border-top: 1px dashed #cbd5e1;
	padding-top: 12px;
}

.rdg-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 12px;
}

.rdg-card-item {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 12px;
}

.rdg-card-item__title {
	font-weight: 700;
	margin: 0 0 6px;
}

.rdg-card-item__meta {
	margin: 0;
	color: #475569;
	font-size: 14px;
}

@media (max-width: 640px) {
	.rdg-card {
		padding: 18px;
	}

	.rdg-title {
		font-size: 22px;
	}
}
