.fx-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 6px;
    font-size: 13px;
}

/* ===== HEADER ===== */
.fx-table thead th {
    padding: 10px 12px;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: .05em;
    color: #9aa4b2;
    background: transparent;
    border: none;
}

/* ===== ROW ===== */
.fx-table tbody tr {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(6px);
    transition: all .2s ease;
}

/* ===== HOVER ===== */
.fx-table tbody tr:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-1px);
}

/* ===== CELLS ===== */
.fx-table td {
    padding: 12px 14px;
    color: #e6e9ef;
    border: none;
}

/* ===== ROUNDED ===== */
.fx-table tbody tr td:first-child {
    border-radius: 10px 0 0 10px;
}
.fx-table tbody tr td:last-child {
    border-radius: 0 10px 10px 0;
}

/* ===== MUTED ===== */
.fx-table .muted {
    color: #8b95a5;
    font-size: 12px;
}

/* ===== POSITIVE / NEGATIVE ===== */
.fx-table .pos {
    color: #2fd58c;
    font-weight: 600;
}
.fx-table .neg {
    color: #ff6b6b;
    font-weight: 600;
}

/* ===== BADGES ===== */
.fx-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.fx-badge.success {
    background: rgba(47,213,140,0.15);
    color: #2fd58c;
}

.fx-badge.warning {
    background: rgba(255,193,7,0.15);
    color: #ffc107;
}

.fx-badge.danger {
    background: rgba(255,107,107,0.15);
    color: #ff6b6b;
}

/* ===== ACTION BUTTONS ===== */
.fx-table .fx-btn {
    padding: 5px 10px;
    font-size: 11px;
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.12);
    transition: all .2s;
}

.fx-table .fx-btn:hover {
    background: rgba(255,255,255,0.18);
}

/* ===== SMALL TABLE ===== */
.fx-table.small td {
    padding: 8px 10px;
    font-size: 12px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .fx-table {
        font-size: 12px;
    }
}