.ldacr-recommendations,
.ldacr-portal {
	margin: 1.5rem 0;
	font-family: inherit;
}

.ldacr-recommendation {
	border: 1px solid #dcdcde;
	border-radius: 6px;
	padding: 1rem;
	margin-bottom: 1rem;
	background: #fff;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.ldacr-recommendation__header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 0.5rem;
	gap: 1rem;
}

.ldacr-recommendation__title {
	font-weight: 600;
	text-decoration: none;
	color: inherit;
}

.ldacr-recommendation__meta {
	color: #555d66;
	margin-bottom: 0.75rem;
}

.ldacr-save,
.ldacr-clear {
	background: #303030;
	color: #fff;
	border: none;
	border-radius: 4px;
	padding: 0.4rem 0.8rem;
	cursor: pointer;
	font-size: 0.9rem;
}

.ldacr-save:disabled {
	background: #6c7781;
	cursor: not-allowed;
}

.ldacr-portal table {
	width: 100%;
	border-collapse: collapse;
}

.ldacr-portal th,
.ldacr-portal td {
	border: 1px solid #dcdcde;
	padding: 0.75rem;
	text-align: left;
}

/* Mobile responsive table */
@media screen and (max-width: 768px) {
	.ldacr-portal table,
	.ldacr-portal thead,
	.ldacr-portal tbody,
	.ldacr-portal th,
	.ldacr-portal td,
	.ldacr-portal tr {
		display: block;
	}

	.ldacr-portal thead tr {
		position: absolute;
		top: -9999px;
		left: -9999px;
	}

	.ldacr-portal tr {
		border: 1px solid #dcdcde;
		margin-bottom: 1rem;
		padding: 0;
		background: #fff;
		border-radius: 4px;
	}

	.ldacr-portal td {
		border: none;
		border-bottom: 1px solid #dcdcde;
		position: relative;
		padding-left: 45%;
		padding-top: 0.75rem;
		padding-bottom: 0.75rem;
		padding-right: 0.75rem;
	}

	.ldacr-portal td:before {
		content: attr(data-label) ": ";
		position: absolute;
		left: 0.75rem;
		width: 40%;
		padding-right: 10px;
		white-space: nowrap;
		font-weight: 600;
		color: #1d2327;
	}

	.ldacr-portal td:last-child {
		border-bottom: none;
	}

	.ldacr-portal td .ldacr-clear {
		width: 100%;
		margin-top: 0.5rem;
	}
}

.ldacr-empty {
	padding: 1rem;
	border: 1px dashed #c3c4c7;
}

/* Template Integration Styles */
.ldacr-template-section {
	margin: 2rem 0;
	padding: 1.5rem;
	background: #f9f9f9;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
}

.ldacr-template-title {
	margin: 0 0 1rem 0;
	font-size: 1.5rem;
	font-weight: 600;
	color: #1d2327;
}

.ldacr-template-content {
	margin-top: 1rem;
}

