/* CID/Avatar Lookup - Custom Styles */
/* Version: 2.0.0 - Mobile Optimized */

.active-mode {
    background: linear-gradient(135deg, #646cff, #a78bfa) !important;
    color: white !important;
}

#resultsDetails .card-base {
    animation: bounceIn 0.4s ease-out;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    /* Mode toggle buttons */
    .mode-toggle,
    .flex.gap-2 {
        flex-direction: column !important;
        width: 100% !important;
    }
    
    .mode-toggle button,
    .active-mode {
        width: 100% !important;
        justify-content: center !important;
    }
    
    /* Results cards */
    #resultsDetails .card-base {
        padding: 12px !important;
    }
    
    /* Avatar images */
    .avatar-image {
        max-width: 150px !important;
        height: auto !important;
    }
    
    /* User details */
    .detail-row {
        flex-direction: column !important;
        gap: 4px !important;
    }
    
    .detail-label {
        font-size: 12px !important;
    }
    
    .detail-value {
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .avatar-image {
        max-width: 120px !important;
    }
    
    #resultsDetails .card-base {
        padding: 10px !important;
    }
}

