/* Flexible Table — c097541d */
.ft-c097541d-wrapper {
	width: 100%;
	overflow: visible;
}

.ft-c097541d-table {
	width: 100%;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Header */
.ft-c097541d-header {
	display: flex;
	background-color: #1a1a2e;
}

.ft-c097541d-header .ft-c097541d-cell {
	flex: 1 1 0%;
	padding: 14px 18px;
	font-weight: 600;
	color: #ffffff;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: flex;
	align-items: center;
}

/* Body rows */
.ft-c097541d-row {
	display: flex;
	border-bottom: 1px solid #e9ecef;
	transition: background-color 0.2s ease;
}

.ft-c097541d-row:last-child {
	border-bottom: none;
}

.ft-c097541d-row:hover {
	background-color: #f0f0ff;
}

.ft-c097541d-row .ft-c097541d-cell {
	flex: 1 1 0%;
	padding: 12px 18px;
	display: flex;
	align-items: center;
	font-size: 14px;
	color: #333333;
}

/* Column dividers */
.ft-c097541d-table--dividers .ft-c097541d-cell + .ft-c097541d-cell {
	border-left: 1px solid #e0e0e0;
}

.ft-c097541d-table--dividers .ft-c097541d-header .ft-c097541d-cell + .ft-c097541d-cell {
	border-left: 1px solid rgba(255, 255, 255, 0.2);
}

/* Striped */
.ft-c097541d-row--striped {
	background-color: #f8f9fa;
}

/* Icons — default global color is applied via Elementor selectors on
   .ft-c097541d-icon, .ft-c097541d-icon i, and .ft-c097541d-icon svg.
   Per-cell overrides use inline style with !important directly on the i/svg element. */
.ft-c097541d-icon {
	display: inline-flex;
	align-items: center;
	margin-right: 6px;
	line-height: 1;
}

.ft-c097541d-icon svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.ft-c097541d-icon i {
	color: inherit;
}

/* Mobile card labels — hidden by default */
.ft-c097541d-cell::before {
	display: none;
	content: attr(data-label);
	font-weight: 600;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #6c757d;
	margin-bottom: 4px;
}

/* Card mode — applied via JS class */
.ft-c097541d-table--cards .ft-c097541d-header {
	display: none;
}

.ft-c097541d-table--cards .ft-c097541d-row {
	flex-direction: column;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	margin-bottom: 12px;
	padding: 8px 0;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.ft-c097541d-table--cards .ft-c097541d-row:last-child {
	margin-bottom: 0;
}

.ft-c097541d-table--cards .ft-c097541d-row .ft-c097541d-cell {
	flex: none;
	width: 100% !important;
	max-width: 100% !important;
	flex-direction: column;
	align-items: flex-start;
	padding: 8px 16px;
	border-bottom: 1px solid #f0f0f0;
}

.ft-c097541d-table--cards .ft-c097541d-row .ft-c097541d-cell:last-child {
	border-bottom: none;
}

.ft-c097541d-table--cards .ft-c097541d-cell::before {
	display: block;
}

/* Remove column dividers in card mode */
.ft-c097541d-table--cards.ft-c097541d-table--dividers .ft-c097541d-cell + .ft-c097541d-cell {
	border-left: none;
}
