body { 
    background-color: #061113; 
    color: #b1bec2; 
}

/* Custom Scrollbar */
.custom-scroll::-webkit-scrollbar { 
    width: 6px; 
}
.custom-scroll::-webkit-scrollbar-track { 
    background: #061113; 
}
.custom-scroll::-webkit-scrollbar-thumb { 
    background: #142d31; 
}

/* Animations */
.animate-spin-custom { 
    animation: spin 0.8s linear infinite; 
}
@keyframes spin { 
    100% { transform: rotate(360deg); } 
}

/* Glowing Effects */
.bg-glow-pending { 
    background: linear-gradient(90deg, rgba(255,145,0,0.12) 0%, rgba(12,27,30,1) 100%);
    border: 1px solid rgba(255,145,0,0.4) !important;
    box-shadow: inset 5px 0 15px rgba(255,145,0,0.15);
}
.bg-glow-bad { 
    background: linear-gradient(90deg, rgba(255,23,68,0.12) 0%, rgba(12,27,30,1) 100%);
    border: 1px solid rgba(255,23,68,0.4) !important;
    box-shadow: inset 5px 0 15px rgba(255,23,68,0.15);
}
.bg-glow-used { 
    background: linear-gradient(90deg, rgba(0,230,118,0.12) 0%, rgba(12,27,30,1) 100%);
    border: 1px solid rgba(0,230,118,0.4) !important;
    box-shadow: inset 5px 0 15px rgba(0,230,118,0.15);
}