/* Advanced Data Table - 776942c9 */

.adt-776942c9-wrap {
	position: relative;
	width: 100%;
	box-sizing: border-box;
}

.adt-776942c9-wrap *,
.adt-776942c9-wrap *::before,
.adt-776942c9-wrap *::after {
	box-sizing: border-box;
}

/* Toolbar */
.adt-776942c9-toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 16px;
	align-items: center;
}

/* Search */
.adt-776942c9-search-wrap {
	position: relative;
	flex: 1;
	min-width: 200px;
	max-width: 400px;
}

.adt-776942c9-search-icon {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	color: #999;
	pointer-events: none;
}

.adt-776942c9-search-input {
	width: 100%;
	padding: 10px 14px 10px 38px;
	border: 1px solid #dee2e6;
	border-radius: 8px;
	font-size: 14px;
	line-height: 1.5;
	outline: none;
	transition: border-color 0.2s, box-shadow 0.2s;
	background-color: #f8f9fa;
}

.adt-776942c9-search-input:focus {
	border-color: #4a90d9;
	box-shadow: 0 0 0 3px rgba(74, 144, 217, 0.15);
}

/* Filters */
.adt-776942c9-filters-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.adt-776942c9-filter-select {
	padding: 8px 32px 8px 12px;
	border: 1px solid #dee2e6;
	border-radius: 6px;
	font-size: 13px;
	background-color: #fff;
	cursor: pointer;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 10px center;
	transition: border-color 0.2s;
	min-width: 120px;
}

.adt-776942c9-filter-select:focus {
	border-color: #4a90d9;
}

/* Table Container */
.adt-776942c9-table-container {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

/* Table */
.adt-776942c9-table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: auto;
}

.adt-776942c9-table thead th {
	padding: 14px 16px;
	text-align: left;
	font-weight: 600;
	white-space: nowrap;
	user-select: none;
	position: relative;
	border-bottom: 2px solid transparent;
	transition: background-color 0.2s;
}

.adt-776942c9-sortable {
	cursor: pointer;
}

.adt-776942c9-sortable:hover {
	opacity: 0.85;
}

.adt-776942c9-sort-icon {
	margin-left: 6px;
	font-size: 14px;
	opacity: 0.5;
	transition: opacity 0.2s;
}

.adt-776942c9-sortable:hover .adt-776942c9-sort-icon {
	opacity: 1;
}

.adt-776942c9-sort-asc .adt-776942c9-sort-icon::after {
	content: '\2191';
}

.adt-776942c9-sort-desc .adt-776942c9-sort-icon::after {
	content: '\2193';
}

.adt-776942c9-table tbody td {
	padding: 12px 16px;
	border-bottom: 1px solid #e9ecef;
	transition: background-color 0.15s;
	vertical-align: middle;
}

.adt-776942c9-table tbody tr {
	transition: background-color 0.15s;
}

.adt-776942c9-table tbody tr.adt-776942c9-row-hidden {
	display: none;
}

/* No results */
.adt-776942c9-no-results {
	text-align: center;
	padding: 40px 20px;
	color: #999;
	font-size: 14px;
}

/* Footer */
.adt-776942c9-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 16px;
	flex-wrap: wrap;
	gap: 12px;
}

.adt-776942c9-entries-info {
	font-size: 13px;
	color: #6c757d;
}

/* Pagination */
.adt-776942c9-pagination {
	display: flex;
	gap: 4px;
	flex-wrap: wrap;
}

.adt-776942c9-page-btn {
	padding: 6px 12px;
	border: 1px solid #dee2e6;
	background: #fff;
	cursor: pointer;
	font-size: 13px;
	border-radius: 6px;
	transition: all 0.2s;
	line-height: 1.4;
	min-width: 36px;
	text-align: center;
	user-select: none;
}

.adt-776942c9-page-btn:hover:not(.adt-776942c9-active):not(:disabled) {
	background-color: #e8f4fd;
}

.adt-776942c9-page-btn.adt-776942c9-active {
	background-color: #1a1a2e;
	color: #fff;
	border-color: #1a1a2e;
}

.adt-776942c9-page-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

/* Cards (mobile) */
.adt-776942c9-cards-container {
	display: none;
}

.adt-776942c9-card {
	background: #fff;
	border: 1px solid #e9ecef;
	border-radius: 10px;
	padding: 16px;
	margin-bottom: 12px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.adt-776942c9-card-row {
	display: flex;
	justify-content: space-between;
	padding: 6px 0;
	border-bottom: 1px solid #f0f0f0;
	align-items: center;
}

.adt-776942c9-card-row:last-child {
	border-bottom: none;
}

.adt-776942c9-card-label {
	font-weight: 600;
	font-size: 13px;
	color: #1a1a2e;
	min-width: 100px;
}

.adt-776942c9-card-value {
	font-size: 13px;
	color: #333;
	text-align: right;
	word-break: break-word;
}

.adt-776942c9-card.adt-776942c9-row-hidden {
	display: none;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
	.adt-776942c9-hide-tablet {
		display: none !important;
	}

	.adt-776942c9-toolbar {
		flex-direction: column;
		align-items: stretch;
	}

	.adt-776942c9-search-wrap {
		max-width: 100%;
	}
}

/* Responsive: Mobile */
@media (max-width: 767px) {
	.adt-776942c9-hide-mobile {
		display: none !important;
	}

	.adt-776942c9-wrap[data-mobile-layout="card"] .adt-776942c9-table-container {
		display: none;
	}

	.adt-776942c9-wrap[data-mobile-layout="card"] .adt-776942c9-cards-container {
		display: block;
	}

	.adt-776942c9-wrap[data-mobile-layout="scroll"] .adt-776942c9-table {
		min-width: 600px;
	}

	.adt-776942c9-footer {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.adt-776942c9-filters-wrap {
		flex-direction: column;
	}

	.adt-776942c9-filter-select {
		width: 100%;
	}
}
