@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500&display=swap');

/* Icon Animations */
@keyframes icon-pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes icon-beat {
    0% { transform: scale(1); }
    25% { transform: scale(1.15); }
    50% { transform: scale(1); }
    75% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.status-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    font-family: 'Outfit', sans-serif;
}

.status-row {
    background: #0d0d0d;
    border: 1px solid #1c1c1c;
    border-radius: 8px;
    padding: 18px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s ease;
    text-decoration: none !important;
    cursor: pointer;
    width: 100%;
    margin-bottom: 0 !important;
}

.status-row:hover {
    background: #111;
}

.product-name {
    color: #efefef;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.2px;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Outfit', sans-serif;
}

/* Animated Icons */
.icon-safe { animation: icon-pulse 2s infinite ease-in-out; }
.icon-detected { animation: icon-beat 1s infinite ease-in-out; }
.icon-spin { animation: fa-spin 2s infinite linear; }

/* Safe/Undetected Badge */
.badge-safe {
    background: rgba(0, 255, 128, 0.08);
    color: #00ff80;
}

/* Detected Badge */
.badge-detected {
    background: rgba(255, 71, 87, 0.08);
    color: #ff4757;
}

/* Testing/Updating Badge */
.badge-testing {
    background: rgba(255, 165, 2, 0.08);
    color: #ffa502;
}

.status-badge i {
    font-size: 14px;
}
