.top-miners-panel-fixed {
    position: fixed;
    top: 200px;
    left: 12px;
    width: 200px;
    z-index: 1030;
}

.top-miners-card {
    background: linear-gradient(180deg, rgba(8, 20, 40, 0.96), rgba(5, 16, 30, 0.96));
    border: 1px solid rgba(0, 255, 156, 0.14);
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.top-miners-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    padding: 8px 8px 6px;
    border-bottom: 1px solid rgba(0, 255, 156, 0.08);
}

.top-miners-title {
    margin: 0;
    font-size: 10px;
    color: #ffffff;
    font-weight: 700;
}

.top-miners-badge {
    font-size: 8px;
    font-weight: 700;
    color: #0b1d2a;
    background: linear-gradient(135deg, #00ff9c, #5eead4);
    padding: 2px 5px;
    border-radius: 999px;
    text-transform: uppercase;
}

.top-miners-table-head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px;
    padding: 6px 8px;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #8fb7a7;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-miners-list {
    max-height: 520px;
    overflow-y: auto;
}

.top-miners-list::-webkit-scrollbar {
    width: 4px;
}

.top-miners-list::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 156, 0.18);
    border-radius: 999px;
}

.top-miner-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px;
    align-items: center;
    padding: 7px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.2s ease;
}

.top-miner-row:hover {
    background: rgba(0, 255, 156, 0.04);
}

.top-miner-address {
    font-size: 15px;
    color: #d7e3ff;
    font-family: monospace;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top-miner-speed {
    font-size: 11px;
    color: #00ff9c;
    font-weight: 700;
    white-space: nowrap;
}

.top-miners-empty {
    padding: 14px 8px;
    text-align: center;
    color: #8ba29a;
    font-size: 9px;
}

@media (max-width: 1400px) {
    .top-miners-panel-fixed {
        display: none;
    }
}