/* Filterable Data Table — 4386ffb7 */

.fdt-4386ffb7-container {
    width: 100%;
}

/* Filters */
.fdt-4386ffb7-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-end;
}

.fdt-4386ffb7-filter-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 160px;
}

.fdt-4386ffb7-filter-label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fdt-4386ffb7-filter-select {
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #fff;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    appearance: auto;
    width: 100%;
}

.fdt-4386ffb7-filter-select:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

/* Table Wrapper */
.fdt-4386ffb7-wrapper {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.fdt-4386ffb7-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

/* Header */
.fdt-4386ffb7-thead {
    background-color: #1a1a2e;
}

.fdt-4386ffb7-thead th {
    padding: 14px 18px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Body */
.fdt-4386ffb7-tbody td {
    padding: 12px 18px;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.15s ease;
}

.fdt-4386ffb7-tbody tr {
    background-color: #fff;
    transition: background-color 0.15s ease;
}

.fdt-4386ffb7-tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.fdt-4386ffb7-tbody tr:hover {
    background-color: #e8f4fd;
}

.fdt-4386ffb7-tbody tr:last-child td {
    border-bottom: none;
}

/* Link in column 4 */
.fdt-4386ffb7-link {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.fdt-4386ffb7-link:hover {
    color: #4338ca;
    text-decoration: underline;
}

/* Hidden row */
.fdt-4386ffb7-tbody tr.fdt-4386ffb7-hidden {
    display: none;
}

/* No results */
.fdt-4386ffb7-no-results {
    text-align: center;
    padding: 24px 16px;
    color: #888;
    font-size: 14px;
    font-style: italic;
}

/* Responsive */
@media (max-width: 767px) {
    .fdt-4386ffb7-filters {
        flex-direction: column;
    }

    .fdt-4386ffb7-filter-group {
        min-width: 100%;
    }
}
