/* Table widget — structural layout + baked default look. Colors/padding
   come from the widget's Style-tab controls (which default to ''), so this
   file supplies the default look a fresh drop needs and nothing else. */

.ractro-table-wrap {
	width: 100%;
}

.ractro-table-wrap--scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.ractro-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
	line-height: 1.5;
}

.ractro-table th,
.ractro-table td {
	padding: 12px 16px;
	text-align: left;
	vertical-align: middle;
}

.ractro-table thead th {
	background-color: #111827;
	color: #ffffff;
	font-weight: 600;
	white-space: nowrap;
}

.ractro-table tbody td {
	background-color: #ffffff;
	color: #374151;
	border-bottom: 1px solid #e5e7eb;
}

.ractro-table--striped tbody tr:nth-child(even) td {
	background-color: #f9fafb;
}

.ractro-table--bordered,
.ractro-table--bordered th,
.ractro-table--bordered td {
	border: 1px solid #e5e7eb;
}

.ractro-table-empty {
	padding: 18px;
	border: 1px dashed #cbd5e1;
	border-radius: 10px;
	color: #94a3b8;
	font-size: 13px;
	text-align: center;
}
