﻿.scan-status-container {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.scan-status-box {
    width: 120px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

    .scan-status-box.active {
        background: #16a34a;
        color: white;
    }

    .scan-status-box.waiting {
        background: #dc2626;
        color: white;
    }

    .scan-status-box.inactive {
        background: #555;
        color: #aaa;
    }

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: currentColor;
    margin-right: 8px;
}








.whale-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}

.whale-card {
    background: #111827;
    border: 1px solid #273449;
    border-radius: 16px;
    padding: 20px;
    transition: 0.2s ease;
}

    .whale-card:hover {
        border-color: #3b82f6;
        transform: translateY(-2px);
    }

.whale-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.whale-amount {
    display: flex;
    align-items: center;
    gap: 14px;
}

.whale-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #172033;
    border-radius: 12px;
    font-size: 25px;
}

.amount {
    font-size: 24px;
    font-weight: 700;
    color: #f3f4f6;
}

.amount-label {
    margin-top: 3px;
    color: #8b98aa;
    font-size: 13px;
}

.whale-badge {
    padding: 6px 11px;
    border-radius: 20px;
    background: #172033;
    border: 1px solid #334155;
    color: #60a5fa;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.whale-info {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 1fr;
    gap: 20px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #253044;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.info-label {
    color: #718096;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.info-item span:not(.info-label) {
    color: #d1d5db;
    font-size: 14px;
}

.info-item a {
    color: #60a5fa;
    text-decoration: none;
    font-family: monospace;
    font-size: 14px;
}

    .info-item a:hover {
        text-decoration: underline;
    }

.whale-footer {
    margin-top: 18px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.view-transaction {
    color: #60a5fa;
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
}

    .view-transaction:hover {
        color: #93c5fd;
    }

.result-count {
    margin-top: 20px;
    margin-bottom: 10px;
    color: black;
    font-size: 14px;
}

    .result-count strong {
        color: #f3f4f6;
    }
.shareTransaction {
    color: red;
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
}

    .shareTransaction:hover {
        color: #ff6666;
    }

/* Mobile */

@media (max-width: 700px) {

    .whale-card {
        padding: 16px;
    }

    .whale-top {
        align-items: flex-start;
    }

    .amount {
        font-size: 20px;
    }

    .whale-info {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .whale-badge {
        font-size: 10px;
    }

    .whale-footer {
        justify-content: flex-start;
    }
}
.usd-value {
    margin-top: 2px;
    font-size: 17px;
    font-weight: 600;
    color: #facc15;
}