body { font-family: 'Inter', sans-serif; background-color: #f8fafc; }
.gradient-btn { 
    background: var(--theme-gradient, linear-gradient(135deg, #22C55E 0%, #EAB308 100%)); 
    color: white; 
    transition: all 0.3s ease; 
}
.gradient-btn:hover { 
    opacity: 0.9; 
    transform: translateY(-1px); 
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2); 
}
.card-shadow { 
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01); 
}
.word-wrap { 
    max-width: 250px; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    white-space: nowrap; 
}
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
::-webkit-scrollbar-track { background: transparent; }
