/**
 * Analystenberichte Tabelle
 */

.pyrum-analysten-tabelle-wrapper {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.pyrum-analysten-tabelle {
	width: 100%;
	border-collapse: collapse;
	min-width: 600px;
}

.pyrum-analysten-tabelle thead {
	background-color: transparent;
	color: black;
}

.pyrum-analysten-tabelle th {
	padding: 1rem;
	text-align: left;
	font-weight: 700;
	font-size: 0.875rem;
	letter-spacing: 0;
	border-bottom: none;
}

.pyrum-analysten-tabelle tbody tr:hover {
	background-color: transparent;
}

.pyrum-analysten-tabelle td {
	padding: 1rem;
	font-size: 0.9375rem;
	border-bottom: 1px solid var(--wp--preset--color--border, #e5e5e5);
}

.pyrum-analysten-tabelle td:first-child {
	color: var(--wp--preset--color--primary-dark, #000);
	font-weight: 700;
}

.pyrum-analysten-tabelle tbody tr:last-child td {
	border-bottom: none;
}

.pyrum-analysten-download {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	color: black;
	text-decoration: underline;
	font-weight: 500;
	transition: color 0.2s ease;
}

.pyrum-analysten-download:hover {
	color: var(--wp--preset--color--primary-dark, #000);
}

.pyrum-analysten-download img {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
}

/* Mobile: Stack-Layout für Tablets und kleiner */
@media (max-width: 768px) {
	.pyrum-analysten-tabelle {
		min-width: 100%;
	}

	.pyrum-analysten-tabelle thead {
		display: none;
	}

	.pyrum-analysten-tabelle tbody tr {
		display: block;
		margin-bottom: 1.5rem;
		border: 1px solid var(--wp--preset--color--border, #e5e5e5);
		border-radius: 8px;
		overflow: hidden;
	}

	.pyrum-analysten-tabelle tbody tr:hover {
		background-color: transparent;
	}

	.pyrum-analysten-tabelle td {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 0.75rem 1rem;
		border-bottom: 1px solid var(--wp--preset--color--border, #e5e5e5);
	}

	.pyrum-analysten-tabelle td:last-child {
		border-bottom: none;
	}

	.pyrum-analysten-tabelle td::before {
		content: attr(data-label);
		font-weight: 600;
		font-size: 0.875rem;
		color: var(--wp--preset--color--text-secondary, #666);
		text-transform: uppercase;
		letter-spacing: 0.05em;
	}

	.pyrum-analysten-download {
		margin-left: auto;
	}
}
