/* /var/www/html/smp/tools/scammer_radar/style.css */

/* --- BASIS LAYOUT --- */
body {
    background-color: #050505;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(220, 38, 38, 0.05) 0%, transparent 25%), 
        radial-gradient(circle at 85% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 25%);
    background-attachment: fixed;
    color: #ffffff;
}

/* --- GLAS EFFEKTE --- */
.glass-panel {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-input {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.2s;
}
.glass-input:focus {
    border-color: #ef4444; 
    outline: none;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.1);
}

/* --- KARTEN & GRID --- */
.scam-card {
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
.scam-card:hover {
    transform: translateY(-4px);
    background: rgba(30, 30, 30, 0.6);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

/* --- TAG BADGES (Dynamische Farben) --- */
.tag-badge {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.tag-red { background: rgba(239, 68, 68, 0.15); color: #f87171; border-color: rgba(239, 68, 68, 0.2); }
.tag-orange { background: rgba(249, 115, 22, 0.15); color: #fb923c; border-color: rgba(249, 115, 22, 0.2); }
.tag-yellow { background: rgba(234, 179, 8, 0.15); color: #facc15; border-color: rgba(234, 179, 8, 0.2); }
.tag-purple { background: rgba(168, 85, 247, 0.15); color: #c084fc; border-color: rgba(168, 85, 247, 0.2); }
.tag-blue { background: rgba(59, 130, 246, 0.15); color: #60a5fa; border-color: rgba(59, 130, 246, 0.2); }
.tag-green { background: rgba(34, 197, 94, 0.15); color: #4ade80; border-color: rgba(34, 197, 94, 0.2); }
.tag-gray { background: rgba(255, 255, 255, 0.1); color: #9ca3af; border-color: rgba(255, 255, 255, 0.1); }

/* --- AUTOCOMPLETE --- */
.autocomplete-list {
    position: absolute;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.15);
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    z-index: 50;
    border-radius: 0.5rem;
    margin-top: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}
.autocomplete-item {
    padding: 10px 12px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex; 
    align-items: center;
    gap: 10px;
}
.autocomplete-item:hover { background: rgba(255,255,255,0.1); }
.item-avatar { width: 24px; height: 24px; border-radius: 4px; overflow: hidden; background: #000; flex-shrink: 0; }
.item-info { flex: 1; min-width: 0; }
.item-name { font-weight: bold; font-size: 0.85rem; color: white; line-height: 1.2; }
.item-meta { font-size: 0.7rem; color: #888; display: flex; gap: 4px; align-items: center; margin-top: 2px; }

/* --- ANIMATIONEN --- */
.animate-fade-in-up {
    animation: fadeInUp 0.4s ease-out forwards;
    opacity: 0;
    transform: translateY(10px);
}
@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

.modal-enter { animation: modalSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(20px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* --- SCROLLBARS --- */
.custom-scroll::-webkit-scrollbar { width: 6px; }
.custom-scroll::-webkit-scrollbar-track { background: transparent; }
.custom-scroll::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 10px; }
.custom-scroll::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* --- SIDEBAR TRANSITION --- */
.sidebar-transition { transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }

/* --- TABS --- */
.tab-btn-active { 
    border-bottom-width: 2px; 
    color: white !important; 
}

/* --- COLOR PICKER DOTS --- */
.color-dot {
    width: 24px; height: 24px; border-radius: 50%; cursor: pointer;
    border: 2px solid transparent; transition: transform 0.2s;
}
.color-dot:hover { transform: scale(1.1); }
.color-dot.selected { border-color: white; transform: scale(1.1); box-shadow: 0 0 15px rgba(255,255,255,0.3); }

.color-dot.red { background: #ef4444; }
.color-dot.orange { background: #f97316; }
.color-dot.yellow { background: #eab308; }
.color-dot.green { background: #22c55e; }
.color-dot.blue { background: #3b82f6; }
.color-dot.purple { background: #a855f7; }
.color-dot.gray { background: #6b7280; }