/* Frontend styles for Excel Display */
.ed-display .ed-loader {
	padding: 12px 0;
}

/* Responsive wrapper */
.ed-table-wrap {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.ed-table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid #e5e7eb;
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
	min-width: 640px; /* allow horizontal scroll on small screens */
}
.ed-table thead th {
	background: #0ea5e9; /* blue */
	color: #fff;
	text-align: left;
	padding: 10px;
	border-bottom: 2px solid #38bdf8;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.ed-table tbody td {
	padding: 10px;
	border-bottom: 1px solid #e5e7eb;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.ed-table tbody tr:nth-child(odd) td {
	background: #f8fafc;
}

.ed-btn {
	display: inline-block;
	background: linear-gradient(135deg, #0ea5e9, #10b981); /* blue to green */
	color: #fff;
	padding: 6px 12px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
}
.ed-btn:hover {
	filter: brightness(0.95);
}

/* Mobile adjustments */
@media (max-width: 640px) {
	.ed-table { min-width: 0; table-layout: fixed; }
	.ed-table thead th,
	.ed-table tbody td {
		padding: 8px;
		white-space: normal;
		text-overflow: clip;
		overflow: visible;
		word-break: break-word;
	}
	.ed-display .ed-header { padding: 8px 10px; }
	.ed-progress { margin: 6px 0 10px; }
	.ed-progress-label { font-size: 12px; }
	.ed-btn { padding: 6px 10px; }
} 