/**
 * Fantasy Draft Board v4.0 - Trading Mode Styles
 * 
 * Styles for the integrated trading mode:
 * - Context header controls
 * - Player selection/drag states
 * - Before/After view effects
 * - Trade slots (players, picks, cap)
 * - Summary bar
 * 
 * @version 4.0
 */

/* ============================================
   TRADING MODE - CONTEXT HEADER
   ============================================ */

.context-trading {
    background: linear-gradient(135deg, #4c1d95 0%, #6d28d9 100%);
}

.context-trading .context-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.context-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
}

/* Trade Mode Toggle (Specific / General) */
.trade-mode-toggle {
    display: flex;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    padding: 0.2rem;
}

.trade-mode-btn {
    padding: 0.4rem 0.75rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 400;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.trade-mode-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.trade-mode-btn.active {
    background: #7c3aed;
    color: white;
    font-weight: 600;
}

/* View Toggle (Normal / Before / After) */
.trade-view-toggle {
    display: flex;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    padding: 0.2rem;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}

.trade-view-toggle:has(.trade-view-btn.active:not([data-view="normal"])) {
    border-color: #f59e0b;
}

.trade-view-btn {
    padding: 0.4rem 0.6rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 400;
    transition: all 0.15s ease;
}

.trade-view-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.trade-view-btn.active {
    font-weight: 600;
}

.trade-view-btn.active[data-view="normal"] {
    background: #7c3aed;
    color: white;
}

.trade-view-btn.active[data-view="before"] {
    background: #f59e0b;
    color: #1f2937;
}

.trade-view-btn.active[data-view="after"] {
    background: #10b981;
    color: white;
}

.trade-view-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Trade Action Buttons */
.trade-actions {
    display: flex;
    gap: 0.5rem;
}

.trade-action-btn {
    padding: 0.4rem 0.75rem;
    background: #4b5563;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.15s ease;
}

.trade-action-btn:hover:not(:disabled) {
    background: #6b7280;
}

.trade-action-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.trade-action-btn.evaluate-btn:not(:disabled) {
    background: #16a34a;
}

.trade-action-btn.evaluate-btn:hover:not(:disabled) {
    background: #15803d;
}

.trade-action-btn.suggest-btn {
    background: #f59e0b;
    color: #1f2937;
}

.trade-action-btn.suggest-btn:hover {
    background: #d97706;
}

/* Clear Button */
.trade-clear-btn {
    color: #f87171 !important;
    border: 1px solid #f87171 !important;
    background: transparent !important;
    margin-right: 10px;
}

.trade-clear-btn:hover:not(:disabled) {
    background: rgba(248, 113, 113, 0.1) !important;
}

.trade-clear-btn:disabled {
    color: #6b7280 !important;
    border-color: #6b7280 !important;
}

/* ============================================
   TRADING MODE - VIEW BANNER
   ============================================ */

.trade-view-banner {
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 50;
}

.trade-view-banner-before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    color: #1f2937;
}

.trade-view-banner-after {
    background: linear-gradient(90deg, #059669, #10b981);
    color: white;
}

.trade-view-banner .banner-icon {
    font-size: 1.1rem;
}

.trade-view-banner .banner-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
}

/* ============================================
   TRADING MODE - TABLE STRUCTURE FIX
   Ensures glow effects aren't clipped by adjacent cells
   ============================================ */

/* Allow table cells to show overflow (glow effects) */
.trade-interaction-enabled table {
    border-collapse: collapse !important;
    border-spacing: 0px;
}

/* Add white border ONLY to player cells (not headers/position/budget) */
.trade-interaction-enabled td.roster-slot.filled {
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

/* Ensure headers and non-player cells don't get trading styles */
.trade-interaction-enabled th,
.trade-interaction-enabled .team-header,
.trade-interaction-enabled .team-name-cell,
.trade-interaction-enabled .pick-header,
.trade-interaction-enabled .budget-cell,
.trade-interaction-enabled .roster-slot.empty {
    cursor: default !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    z-index: auto !important;
}

/* ============================================
   TRADING MODE - PLAYER INTERACTION
   ============================================ */

/* Enable interaction ONLY on filled roster slots that are actual players */
.trade-interaction-enabled td.roster-slot.filled {
    position: relative;
    cursor: pointer;
    transition: all 0.15s ease;
    z-index: 1;
}

/* Hover state for player slots only */
.trade-interaction-enabled td.roster-slot.filled:hover {
    z-index: 50 !important;
    transform: scale(1.02);
    box-shadow: 0 0 12px rgba(168, 85, 247, 0.6);
}

/* Ensure headers and labels don't get interaction styles */
.trade-interaction-enabled .position-label-cell,
.trade-interaction-enabled .team-header,
.trade-interaction-enabled .budget-cell {
    cursor: default !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Enable interaction indicators for other cell types */
.trade-interaction-enabled .player-cell,
.trade-interaction-enabled .roster-player {
    position: relative;
    cursor: pointer;
    transition: all 0.15s ease;
}

/* Draggable indicator */
.trade-draggable::before {
    content: '⠿';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 0.7rem;
    opacity: 0;
    transition: opacity 0.15s;
}

.trade-interaction-enabled .player-cell:hover::before,
.trade-interaction-enabled .roster-player:hover::before,
.trade-interaction-enabled .roster-slot.filled:hover::before {
    opacity: 1;
}

/* ============================================
   TRADING MODE - SELECTED STATE
   Neon yellow glow with checkmark
   ============================================ */

/* Selected state - Neon yellow glow */
.trade-selected,
.roster-slot.trade-selected,
.player-cell.trade-selected,
.roster-player.trade-selected {
    background: #4c1d95 !important;
    border: 2px solid #facc15 !important;
    box-shadow: 
        0 0 8px #facc15,
        0 0 16px #facc15,
        0 0 24px rgba(250, 204, 21, 0.5),
        inset 0 0 8px rgba(250, 204, 21, 0.2) !important;
    animation: trade-glow 1.5s ease-in-out infinite alternate !important;
    position: relative;
    z-index: auto !important;  /* Above siblings but below sticky headers (z:20) */
}

@keyframes trade-glow {
    from {
        box-shadow: 
            0 0 8px #facc15,
            0 0 16px #facc15,
            0 0 24px rgba(250, 204, 21, 0.5),
            inset 0 0 8px rgba(250, 204, 21, 0.2);
    }
    to {
        box-shadow: 
            0 0 12px #facc15,
            0 0 24px #facc15,
            0 0 36px rgba(250, 204, 21, 0.6),
            inset 0 0 12px rgba(250, 204, 21, 0.3);
    }
}

/* Checkmark badge for selected players */
.trade-selected::after,
.roster-slot.trade-selected::after,
.player-cell.trade-selected::after,
.roster-player.trade-selected::after {
    content: '✔';
    position: absolute;
    top: 4px;
    right: 4px;
    background: #facc15;
    color: #1f2937;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    z-index: 6;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Has destination (via drag-drop) */
.trade-has-destination {
    box-shadow: 0 0 0 2px #f59e0b;
}

/* Dragging state */
.trade-dragging {
    opacity: 0.5;
    transform: scale(0.95);
}

/* ============================================
   TRADING MODE - DROP TARGETS
   ============================================ */

/* Column drop target indicator */
.trade-drop-target {
    position: relative;
}

.trade-drop-target::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px dashed #10b981;
    border-radius: 8px;
    pointer-events: none;
    z-index: 10;
    opacity: 0.5;
}

/* Drop hover state */
.trade-drop-hover {
    background: rgba(16, 185, 129, 0.1) !important;
}

.trade-drop-hover::before {
    opacity: 1;
    border-style: solid;
    background: rgba(16, 185, 129, 0.05);
}

/* ============================================
   TRADING MODE - BEFORE/AFTER VIEW
   ============================================ */

/* Dimmed teams (blur effect) - generic class */
.trade-dimmed {
    opacity: 0.3 !important;
    filter: blur(2px) grayscale(50%) !important;
    pointer-events: none !important;
    transition: all 0.3s ease;
}

/* Dimmed cells in table structure - specific selectors */
td.trade-dimmed,
th.trade-dimmed,
.roster-slot.trade-dimmed {
    opacity: 0.3 !important;
    filter: blur(2px) grayscale(50%) !important;
    pointer-events: none !important;
    transition: all 0.3s ease;
}

/* Involved teams - generic */
.trade-involved {
    position: relative;
}

/* Involved cells in table structure */
td.trade-involved,
th.trade-involved,
.roster-slot.trade-involved {
    position: relative;
}

/* Involved team headers get purple gradient */
th.trade-involved,
.trade-involved .franchise-header,
.trade-involved .team-header {
    background: linear-gradient(135deg, #4c1d95, #6d28d9) !important;
}

/* IN TRADE badge - only on headers, not every cell */
th.trade-involved::after {
    content: 'IN TRADE';
    position: absolute;
    top: 50%;
    right: 0.5rem;
    transform: translateY(-50%);
    background: #facc15;
    color: #1f2937;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 700;
    z-index: 20;
}

/* After view - hide IN TRADE badge */
.trade-view-after th.trade-involved::after {
    display: none;
}

/* Outgoing players in After view */
.trade-outgoing {
    opacity: 0.4;
    text-decoration: line-through;
    border: 2px dashed #dc2626 !important;
    position: relative;
}

.trade-outgoing::before {
    content: '⬅️ TRADED';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #dc2626;
    font-size: 0.65rem;
    font-weight: 700;
}

/* ============================================
   TRADING MODE - AFTER TRADE MODAL
   ============================================ */

.trade-after-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.trade-after-modal {
    background: #1f2937;
    border-radius: 12px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid #374151;
}

.trade-after-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #374151;
    background: linear-gradient(135deg, #4c1d95, #6d28d9);
    border-radius: 12px 12px 0 0;
}

.trade-after-header h2 {
    margin: 0;
    color: white;
    font-size: 1.25rem;
}

.trade-after-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.75rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    opacity: 0.8;
}

.trade-after-close:hover {
    opacity: 1;
}

.trade-after-summary {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0.75rem;
    background: #111827;
    border-bottom: 1px solid #374151;
}

.trade-summary-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #9ca3af;
}

.trade-after-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.trade-after-teams {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.trade-after-team {
    background: #111827;
    border-radius: 8px;
    overflow: hidden;
}

.trade-after-team-header {
    background: linear-gradient(135deg, #374151, #4b5563);
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trade-after-team-header .team-name {
    font-weight: 600;
    color: white;
    font-size: 0.95rem;
}

.trade-after-team-header .trade-flow {
    font-size: 0.75rem;
    color: #9ca3af;
}

.trade-after-roster {
    padding: 0.5rem;
}

.trade-after-position-group {
    margin-bottom: 0.75rem;
}

.trade-after-position-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    border-bottom: 1px solid #374151;
    margin-bottom: 0.25rem;
}

.trade-after-position-label.outgoing-label {
    color: #ef4444;
    border-color: #ef4444;
}

.trade-after-position-players {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.trade-after-player {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.5rem;
    background: #1f2937;
    border-radius: 4px;
    font-size: 0.8rem;
}

.trade-after-player .player-pos-badge {
    padding: 0.15rem 0.35rem;
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: 700;
    color: white;
    min-width: 28px;
    text-align: center;
}

.trade-after-player .player-name {
    flex: 1;
    color: white;
    font-weight: 500;
}

.trade-after-player .player-team {
    color: #6b7280;
    font-size: 0.75rem;
}

/* Incoming player styling */
.trade-player-incoming {
    background: #064e3b !important;
    border: 1px solid #10b981;
}

.trade-player-incoming .player-name {
    color: #6ee7b7;
}

.incoming-badge {
    background: #10b981;
    color: white;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
}

/* Outgoing player styling */
.trade-player-outgoing {
    background: #450a0a !important;
    border: 1px solid #dc2626;
    opacity: 0.7;
}

.trade-player-outgoing .player-name {
    color: #fca5a5;
    text-decoration: line-through;
}

.outgoing-badge {
    background: #dc2626;
    color: white;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
}

.outgoing-section {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px dashed #374151;
}

/* Footer */
.trade-after-footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid #374151;
    background: #111827;
    border-radius: 0 0 12px 12px;
}

.trade-after-btn {
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    transition: all 0.15s ease;
}

.trade-after-btn.secondary {
    background: #4b5563;
    color: white;
}

.trade-after-btn.secondary:hover {
    background: #6b7280;
}

.trade-after-btn.primary {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
}

.trade-after-btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .trade-after-modal {
        max-height: 95vh;
    }
    
    .trade-after-teams {
        grid-template-columns: 1fr;
    }
    
    .trade-after-summary {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
}

/* ============================================
   TRADING MODE - ROSTER VIEW MODE TOGGLE
   ============================================ */

.trade-roster-view-toggle {
    display: flex;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    padding: 0.15rem;
}

.trade-roster-view-btn {
    padding: 0.35rem 0.6rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.trade-roster-view-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.trade-roster-view-btn.active {
    background: #6366f1;
    color: white;
    font-weight: 600;
}

/* ============================================
   TRADING MODE - TRADE SLOTS
   ============================================ */

/* Container for incoming/asset slots */
.trade-incoming-slots,
.trade-asset-slots {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px dashed #4b5563;
}

/* Individual trade slot */
.trade-slot {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.6rem;
    background: #1f2937;
    border-radius: 6px;
    border: 2px solid #374151;
    font-size: 0.8rem;
    /* Fixed height for alignment */
    min-height: 38px;
    box-sizing: border-box;
}

/* Incoming player slot */
.trade-incoming-slot {
    background: #064e3b;
    border-color: #10b981;
}

/* Asset slot (picks/cap) */
.trade-asset-slot {
    border-color: #7c3aed;
}

.trade-asset-slot[data-type="CAP"] {
    border-color: #0891b2;
}

/* Slot components */
.trade-slot-badge {
    padding: 0.1rem 0.35rem;
    border-radius: 3px;
    font-size: 0.6rem;
    font-weight: 700;
}

.trade-slot-badge.incoming {
    background: #10b981;
    color: white;
}

.trade-slot-position {
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    color: white;
    min-width: 28px;
    text-align: center;
}

.trade-slot-icon {
    font-size: 1rem;
}

.trade-slot-name {
    flex: 1;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.trade-slot-value {
    color: #10b981;
    font-weight: 600;
    font-size: 0.75rem;
}

.trade-slot-remove {
    background: transparent;
    border: none;
    color: #ef4444;
    cursor: pointer;
    font-size: 1rem;
    padding: 0 0.25rem;
    line-height: 1;
}

.trade-slot-remove:hover {
    color: #f87171;
}

/* ============================================
   TRADING MODE - VALUE CHANGE BADGE
   ============================================ */

.trade-value-change {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 20;
}

.trade-value-change.positive {
    background: #059669;
    color: white;
}

.trade-value-change.negative {
    background: #dc2626;
    color: white;
}

/* ============================================
   TRADING MODE - SUMMARY BAR
   ============================================ */

.trade-summary-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, #1f2937 20%);
    padding: 2rem 1rem 1rem;
    z-index: 100;
}

.trade-summary-inner {
    max-width: 800px;
    margin: 0 auto;
    background: #374151;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.trade-summary-info {
    flex: 1;
}

.trade-summary-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: white;
    margin-bottom: 0.25rem;
}

.trade-summary-details {
    font-size: 0.8rem;
    color: #9ca3af;
}

.trade-summary-btn {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.15s ease;
}

.trade-summary-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}

/* ============================================
   TRADING TAB STYLING
   ============================================ */

.view-tab[data-view="trading"] {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
}

.view-tab[data-view="trading"]:not(.active) {
    background: transparent;
    color: #a855f7;
    border: 1px solid #a855f7;
}

.view-tab[data-view="trading"].active {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    border: none;
}

/* Premium star styling */
.view-tab.premium::after {
    content: '★';
    margin-left: 0.25rem;
    color: #fbbf24;
}

/* ============================================
   TRADING MODE - EXPANDED ROW (Inbox/Saved/Compare)
   ============================================ */

.trade-expanded-row {
    background: #1e1e2e;
    border-bottom: 1px solid #3d3d5c;
    padding: 1rem;
    animation: slideDown 0.2s ease;
    /* FIXED: Ensure full width */
    width: 100%;
    box-sizing: border-box;
    margin: 0;
}

/* Ensure expanded row container spans full width */
#tradeExpandedRow {
    position: relative;
    width: 100%;
    left: 0;
    right: 0;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Toggle button active state */
.context-btn.toggle-btn.active {
    background: #7c3aed;
    color: white;
}

.context-btn.toggle-btn .badge {
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    padding: 0.1rem 0.4rem;
    border-radius: 999px;
    margin-left: 0.25rem;
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 768px) {
    .trade-mode-toggle {
        flex-wrap: wrap;
    }
    
    .trade-mode-btn {
        font-size: 0.75rem;
        padding: 0.35rem 0.5rem;
    }
    
    .trade-view-toggle {
        display: none; /* Use different mobile control */
    }
    
    .trade-actions {
        flex-wrap: wrap;
    }
    
    .trade-action-btn {
        font-size: 0.75rem;
        padding: 0.35rem 0.6rem;
    }
    
    .trade-summary-inner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .trade-summary-btn {
        width: 100%;
    }
    
    /* Simplify selection visual on mobile */
    .trade-interaction-enabled .player-cell::after,
    .trade-interaction-enabled .roster-player::after {
        display: none;
    }
    
    .trade-selected {
        border-left: 4px solid #facc15 !important;
    }
}
