/* eCBD Elementor Table Widget — frontend styles */

.ecbd-table-wrapper {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.ecbd-table {
	border-collapse: collapse;
	width: 100%;
	max-width: 100%;
}

.ecbd-table-caption {
	caption-side: top;
	text-align: left;
	padding: 0 0 .5em;
	font-weight: 600;
}

.ecbd-table th,
.ecbd-table td {
	vertical-align: middle;
	box-sizing: border-box;
}

.ecbd-align-left   { text-align: left;   }
.ecbd-align-center { text-align: center; }
.ecbd-align-right  { text-align: right;  }

.ecbd-table-empty {
	padding: 1em;
	border: 1px dashed #cbd5e1;
	color: #64748b;
	text-align: center;
}

/* Mobile niceties — table stays a table but scrolls horizontally rather than squishing. */
@media (max-width: 600px) {
	.ecbd-table {
		min-width: 480px;
	}
}
