/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* Popover scrollbar */
.popover-scroll::-webkit-scrollbar-thumb { background: #475569; }
.popover-scroll::-webkit-scrollbar-thumb:hover { background: #64748b; }

/* Hide default checkbox */
.social-checkbox input:checked + div {
    background-color: #eef2ff;
    border-color: #6366f1;
    color: #4f46e5;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.1);
}

.social-checkbox input:checked + div i {
    color: #4f46e5;
}

/* Domain scroll */
.domains-scroll {
    max-height: 280px;
    overflow-y: auto;
    padding-right: 8px;
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Animations */
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }

/* Custom Select */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

/* Popover entering */
.popover-active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}