/**
 * style.css - Additional Component Styles (V46 - Smooth Transitions)
 * Base styles are in main.css - DO NOT DUPLICATE
 * This file contains: Top Players, Settings Panel, Activity-specific styles
 */

/* === Smooth Transitions for Dynamic Content (V46) === */
/* Prevent jarring refresh feel - all dynamic containers get smooth transitions */
#top-players-sidebar,
#top-players-list,
.bet-grid-cell .cell-chips,
.bet-grid-cell .cell-total {
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

/* Fade-in animation for new elements */
@keyframes smoothFadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Apply to dynamically added items */
#top-players-sidebar > *,
#top-players-list > * {
    animation: smoothFadeIn 0.25s ease-out forwards;
}

/* Prevent layout shift on bet grid */
.bet-grid-cell {
    contain: layout style;
}

/* === Tooltip === */
[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    white-space: nowrap;
    z-index: 50;
    pointer-events: none;
}

/* === Pointer Marker === */
.pointer-marker {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Settings Modal */
#settings-modal {
    transition: opacity 0.2s;
}
#settings-modal.opacity-0 { pointer-events: none; }
#settings-modal.opacity-100 { pointer-events: auto; }

.signal-pill-enter {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.signal-pill-exit {
    transform: translateY(20px) scale(0.9);
    opacity: 0;
}

/* === BET GRID (V45 - Complete Fix) === */
.bet-grid-cell {
    position: relative;
    height: 120px;
    min-height: 120px;
    border-radius: 14px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.15s ease, border-color 0.15s ease;
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    will-change: transform;
}

.bet-grid-cell:hover {
    transform: scale(1.02);
    border-color: rgba(255,255,255,0.3);
}

.bet-grid-cell .cell-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.bet-grid-cell .cell-label {
    font-size: 15px;
    font-weight: 800;
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.bet-grid-cell .cell-payout {
    font-size: 9px;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    background: rgba(0,0,0,0.25);
    padding: 2px 6px;
    border-radius: 5px;
}

.bet-grid-cell .cell-chips {
    flex: 1;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 4px;
    min-height: 50px;
}

.bet-grid-cell .cell-total {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    text-align: center;
    background: rgba(0,0,0,0.2);
    border-radius: 6px;
    padding: 3px 8px;
}

/* === Winning Cell Glow Effect === */
.bet-grid-cell.winning {
    animation: winningGlow 0.5s ease-in-out infinite alternate;
    border: 3px solid #4ade80 !important;
    box-shadow: 
        0 0 20px rgba(74, 222, 128, 0.6),
        0 0 40px rgba(74, 222, 128, 0.4),
        inset 0 0 15px rgba(74, 222, 128, 0.2);
    z-index: 5;
}

@keyframes winningGlow {
    from {
        box-shadow: 
            0 0 20px rgba(74, 222, 128, 0.6),
            0 0 40px rgba(74, 222, 128, 0.3);
    }
    to {
        box-shadow: 
            0 0 30px rgba(74, 222, 128, 0.8),
            0 0 60px rgba(74, 222, 128, 0.5);
    }
}

/* === Casino Chips V51 - Scattered Pile (Real Casino Style) === */
.chip-v51-wrapper { 
    pointer-events: none; 
    will-change: transform; 
}

.chip-v51 {
    border-radius: 50%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0,0,0,0.6);
    color: #fff;
    position: absolute;
    /* Realistic edge & depth */
    box-shadow: 
        inset 0 0 0 1px rgba(255,255,255,0.25), 
        inset 0 0 6px rgba(0,0,0,0.5),
        0 1px 1px rgba(0,0,0,0.4),
        0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Dashed inner ring */
.chip-v51::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%;
    border: 2px dashed rgba(255,255,255,0.7);
    mask-image: radial-gradient(transparent 64%, black 65%);
    -webkit-mask-image: radial-gradient(transparent 64%, black 65%);
    opacity: 0.85;
}

/* Chip Colors - Tier Based */
.chip-tier-10k { 
    background: repeating-conic-gradient(#111 0deg 15deg, #333 15deg 30deg);
    border: 2px solid #eebb44; 
    color: #eebb44;
}
.chip-tier-1k { 
    background: repeating-conic-gradient(#d35400 0deg 15deg, #e67e22 15deg 30deg);
    border: 2px solid #f39c12; 
}
.chip-tier-100 { 
    background: repeating-conic-gradient(#922b21 0deg 15deg, #c0392b 15deg 30deg);
    border: 2px solid #e74c3c; 
}
.chip-tier-10 { 
    background: repeating-conic-gradient(#2471a3 0deg 15deg, #2980b9 15deg 30deg);
    border: 2px solid #5dade2; 
}

/* === Bet Grid Cell - Chips Container === */
.bet-grid-cell .cell-chips {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    overflow: visible;
}

/* === V41: Royal Flush Theme (Premium Casino) === */
.player-chip-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 2px; /* For border gradient */
    /* Base for gradient border */
    background: linear-gradient(145deg, #e5e7eb, #ffffff); 
    border-radius: 18px;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); /* Bouncy spring */
    cursor: pointer;
    position: relative;
    will-change: transform;
    min-height: 140px;
    z-index: 1;
}

/* Inner Card Content */
.player-chip-card::before {
    content: '';
    position: absolute;
    top: 2px; left: 2px; right: 2px; bottom: 2px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    border-radius: 16px;
    z-index: -1;
}

.player-chip-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.15),
        0 10px 10px -5px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/* === Rank Themes (Metallic Borders) === */

/* Rank 1: Royal Gold */
.player-chip-card.rank-1 {
    background: linear-gradient(135deg, #fcd34d 0%, #f59e0b 50%, #b45309 100%);
    box-shadow: 0 10px 30px -10px rgba(245, 158, 11, 0.5);
}
.player-chip-card.rank-1::before {
    background: linear-gradient(180deg, #fffbeb 0%, #fff7ed 100%);
}
.player-chip-card.rank-1 .avatar {
    border-color: #fcd34d;
    box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.3);
}

/* Rank 2: Sterling Silver */
.player-chip-card.rank-2 {
    background: linear-gradient(135deg, #e2e8f0 0%, #94a3b8 50%, #64748b 100%);
    box-shadow: 0 10px 30px -10px rgba(148, 163, 184, 0.5);
}
.player-chip-card.rank-2::before {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}
.player-chip-card.rank-2 .avatar {
    border-color: #cbd5e1;
}

/* Rank 3: Antique Bronze */
.player-chip-card.rank-3 {
    background: linear-gradient(135deg, #fdba74 0%, #f97316 50%, #c2410c 100%);
    box-shadow: 0 10px 30px -10px rgba(249, 115, 22, 0.4);
}
.player-chip-card.rank-3::before {
    background: linear-gradient(180deg, #fff7ed 0%, #ffedd5 100%);
}
.player-chip-card.rank-3 .avatar {
    border-color: #fdba74;
}

/* Elements */
.player-chip-card .avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin-top: 12px;
    border: 3px solid #fff;
    object-fit: cover;
    transition: transform 0.3s;
    background: #f3f4f6;
}

.player-chip-card .name {
    font-size: 11px;
    font-weight: 800;
    color: #111827;
    text-align: center;
    width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
    padding-bottom: 4px;
}

.player-chip-card .win-amount {
    font-size: 12px;
    font-weight: 900;
    color: #059669;
    background: linear-gradient(90deg, #ecfdf5, #d1fae5);
    padding: 6px 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    border: 1px solid #a7f3d0;
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.8);
    position: relative;
    z-index: 2;
}

.player-chip-card .win-rate {
    font-size: 9px;
    font-weight: 700;
    color: #6b7280;
    background: transparent;
    margin-top: -4px;
    margin-bottom: 4px;
    position: relative;
    z-index: 2;
}

/* Action Button (Follow) - Always Visible */
.player-chip-card .action-btn {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #6b7280;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: scale(1);
    z-index: 30;
    cursor: pointer;
}

.player-chip-card .action-btn:hover {
    background: #8b5cf6;
    color: white;
    border-color: #8b5cf6;
    transform: scale(1.1);
}

.player-chip-card .action-btn:hover {
    background: #8b5cf6;
    color: white;
    border-color: #8b5cf6;
}

/* Following state - violet */
.player-chip-card .action-btn.following {
    background: #8b5cf6;
    color: white;
    border-color: #8b5cf6;
}

/* Unfollow in Following section - red X */
.player-chip-card .action-btn.unfollow {
    background: #fee2e2;
    color: #ef4444;
    border-color: #fca5a5;
}

/* === V41: Ribbon Badges === */
.rank-badge {
    position: absolute;
    top: -4px;
    left: 10px;
    width: 24px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    color: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    z-index: 20;
    clip-path: polygon(0% 0%, 100% 0, 100% 100%, 50% 80%, 0% 100%);
    padding-bottom: 6px;
}

.rank-badge.gold { background: linear-gradient(180deg, #f59e0b, #b45309); }
.rank-badge.silver { background: linear-gradient(180deg, #94a3b8, #475569); }
.rank-badge.bronze { background: linear-gradient(180deg, #f97316, #c2410c); }
.rank-badge.normal { 
    height: 24px;
    width: 20px;
    font-size: 10px;
    background: #e5e7eb; 
    color: #6b7280;
    top: 0;
    left: 8px;
    clip-path: none;
    border-radius: 0 0 6px 6px;
}

/* Active Bet Indicator */
.active-indicator {
    position: absolute;
    bottom: 50px; /* Above win rate */
    right: -4px;
    background: #ef4444;
    color: white;
    font-size: 9px;
    font-weight: bold;
    padding: 1px 6px;
    border-radius: 10px 0 0 10px;
    box-shadow: -2px 2px 4px rgba(0,0,0,0.1);
    animation: slideInRight 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 25;
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}}

.player-chip-card .action-btn.follow {
    background: #8b5cf6;
    color: white;
    box-shadow: 0 2px 6px rgba(139,92,246,0.4);
}

.player-chip-card .action-btn.follow:hover {
    background: #7c3aed;
    transform: scale(1.1);
}

.player-chip-card .action-btn.unfollow {
    background: #ef4444;
    color: white;
    opacity: 1;
    transform: scale(1);
}

.player-chip-card .action-btn.unfollow:hover {
    background: #dc2626;
    transform: scale(1.1);
}

/* Active Bet Indicator */
.player-chip-card .active-indicator {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 8px;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    white-space: nowrap;
    animation: pulse 1.5s infinite;
}

/* Rank Badge */
.player-chip-card .rank-badge {
    position: absolute;
    top: -6px;
    left: -6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 900;
    color: white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.player-chip-card .rank-badge.gold { background: linear-gradient(135deg, #f59e0b, #d97706); }
.player-chip-card .rank-badge.silver { background: linear-gradient(135deg, #94a3b8, #64748b); }
.player-chip-card .rank-badge.bronze { background: linear-gradient(135deg, #f97316, #ea580c); }
.player-chip-card .rank-badge.normal { background: #9ca3af; font-size: 9px; }

/* Responsive adjustments */
@media (max-width: 380px) {
    .bet-grid-cell {
        min-height: 70px;
        padding: 6px;
    }
    .bet-grid-cell .cell-label {
        font-size: 12px;
    }
    .chip-avatar {
        width: 22px;
        height: 22px;
    }
}

/* === V34: Search Suggestions === */
#player-suggestions .suggestion-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    cursor: pointer;
    transition: background 0.15s;
    border-bottom: 1px solid #f4f4f5;
}

#player-suggestions .suggestion-item:last-child {
    border-bottom: none;
}

#player-suggestions .suggestion-item:hover {
    background: #f4f4f5;
}

#player-suggestions .suggestion-item img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e4e4e7;
}

#player-suggestions .suggestion-item .info {
    flex: 1;
    min-width: 0;
}

#player-suggestions .suggestion-item .name {
    font-size: 12px;
    font-weight: 700;
    color: #27272a;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#player-suggestions .suggestion-item .stats {
    font-size: 10px;
    color: #71717a;
}

#player-suggestions .suggestion-item .follow-btn {
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 700;
    background: #8b5cf6;
    color: white;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, background 0.15s;
}

#player-suggestions .suggestion-item .follow-btn:hover {
    background: #7c3aed;
    transform: scale(1.05);
}

#player-suggestions .suggestion-item .follow-btn.following {
    background: #10b981;
}

/* === V46: Premium Toast Notifications === */
.bet-toast {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(249,250,251,0.95));
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 
        0 10px 40px -10px rgba(139, 92, 246, 0.25),
        0 4px 12px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.8);
    border: 1px solid rgba(139, 92, 246, 0.2);
    animation: toastSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), toastFadeOut 0.3s ease 3.7s forwards;
    max-width: 260px;
    will-change: transform, opacity;
}

.bet-toast .toast-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.bet-toast .toast-content {
    flex: 1;
    min-width: 0;
}

.bet-toast .toast-header {
    display: flex;
    align-items: center;
    gap: 6px;
}

.bet-toast .toast-name {
    font-size: 12px;
    font-weight: 700;
    color: #18181b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}

.bet-toast .toast-hot {
    color: #f97316;
    display: flex;
    align-items: center;
}

.bet-toast .toast-bet {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.bet-toast .bet-type {
    font-size: 11px;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    padding: 3px 8px;
    border-radius: 6px;
}

.bet-toast .bet-amount {
    font-size: 11px;
    font-weight: 700;
    color: #059669;
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(100%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes toastFadeOut {
    to {
        opacity: 0;
        transform: translateX(20px) scale(0.95);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(50%);
    }
}

/* === V35: Chip Stack (Clustering) === */
.chip-stack {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #374151, #1f2937);
    border: 2px dashed #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

/* === V35: Master Badge (On Fire) === */
.player-chip-card .master-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #ea580c);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 2px 6px rgba(249,115,22,0.4);
    animation: pulse 1.5s infinite;
}

/* === V42: Dark Emerald Settings Panel === */
.settings-panel {
    background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #047857 100%) !important;
    border-radius: 16px !important;
    padding: 0 !important;
    overflow: hidden !important;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset !important;
    position: absolute !important; 
    top: 44px !important;
    right: 0 !important; 
    z-index: 100 !important;
    width: 260px !important;
    transform-origin: top right;
    animation: panelSlideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.settings-panel .panel-header {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.settings-panel .panel-header i {
    color: #a7f3d0;
}

.settings-panel .setting-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.2s;
}

.settings-panel .setting-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.settings-panel .setting-row:last-child {
    border-bottom: none;
}

.settings-panel .setting-info {
    flex: 1;
}

.settings-panel .setting-label {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #ecfdf5 !important;
    display: block;
}

.settings-panel .setting-desc {
    font-size: 10px !important;
    color: #6ee7b7 !important;
    margin-top: 2px;
    display: block;
    opacity: 0.8;
}

/* Global Toggle Switch (Default) */
.toggle-switch {
    position: relative;
    width: 40px;
    height: 22px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e5e7eb;
    transition: .3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 22px;
}

.toggle-switch .slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.toggle-switch input:checked + .slider {
    background-color: #8b5cf6;
}

.toggle-switch input:checked + .slider:before {
    transform: translateX(18px);
}

/* Emerald Toggle (Settings Panel Only) */
.settings-panel .toggle-switch {
    width: 44px;
    height: 24px;
}

.settings-panel .toggle-switch .slider {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
}

.settings-panel .toggle-switch .slider:before {
    left: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.settings-panel .toggle-switch input:checked + .slider {
    background: linear-gradient(135deg, #10b981, #34d399);
    border-color: #10b981;
}

.settings-panel .toggle-switch input:checked + .slider:before {
    transform: translateX(20px);
}

/* Dark Emerald Select Dropdown */
.settings-panel select {
    font-size: 11px;
    font-weight: 600;
    padding: 8px 28px 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(0, 0, 0, 0.25);
    color: #ecfdf5;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23a7f3d0' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.2em 1.2em;
    outline: none;
    transition: all 0.2s;
    min-width: 90px;
}

.settings-panel select:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background-color: rgba(0, 0, 0, 0.35);
}

.settings-panel select:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3);
}

.settings-panel select option {
    background: #064e3b;
    color: #ecfdf5;
}

.settings-panel select:focus {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px #ddd6fe;
    outline: none;
}

/* Toast Container (V36) */
#bet-toast-container {
    right: 20px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}


