/* =========================================================================
   ffcw-cpt-table.css — FutbolFirst CPT Table Widget
   Minimal base styles + resets so theme CSS does not bleed in.
   All visual design is driven by Elementor controls.
   ========================================================================= */

/* ---- Wrapper ---- */
.ffcw-ct-wrap {
	max-width: 100%;
	box-sizing: border-box;
}

/* ---- Table ---- */
.ffcw-ct {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: auto;
	box-sizing: border-box;
}

/* ---- Cells — reset any theme defaults ---- */
.ffcw-ct__th,
.ffcw-ct__td {
	box-sizing: border-box;
	word-break: break-word;
	overflow-wrap: break-word;
	/* Neutralise any border the theme may inject on th/td */
	border-top: none;
	border-right: none;
	border-left: none;
}

.ffcw-ct__th {
	border-bottom: 2px solid transparent;
}

.ffcw-ct__td {
	border-bottom: 1px solid transparent;
	vertical-align: middle;
}

/* ---- Rows — reset any theme background on tr ---- */
.ffcw-ct__head .ffcw-ct__row,
.ffcw-ct__body .ffcw-ct__row {
	background-color: transparent;
}

/* ---- SVG images ---- */
.ffcw-ct__svg {
	display: inline-block;
	vertical-align: middle;
	max-width: 100%;
	height: auto;
}

/* ---- Editor placeholder ---- */
.ffcw-ct-placeholder {
	padding: 20px;
	color: #888;
	font-style: italic;
}
