.toggle-btn.active {
    background-color: white;
    color: rgb(99 102 241);
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}
.toggle-btn:not(.active) {
    color: rgb(107 114 128);
}
.toggle-btn:not(.active):hover {
    background-color: rgb(243 244 246);
}
.animate-spin {
    animation: spin 1s linear infinite;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}