/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #e0e0e0;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #10b981, #8b5cf6); /* green to purple */
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #059669, #7c3aed);
}

/* Firefox support */
* {
    scrollbar-width: thin;
    scrollbar-color: #10b981 #e0e0e0;
}

/* Toast animation */
#toast {
    transition: opacity 0.3s ease;
    z-index: 9999;
}
