.main-content {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.class-item {
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.class-item:hover {
    transform: translateX(3px);
    background: rgba(99, 102, 241, 0.08);
}

.class-item.Active {
    animation: selectPulse 0.2s ease-out;
}

@keyframes selectPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

.copy-btn {
    transition: transform 0.1s;
}

.copy-btn:active {
    transform: scale(0.92);
}

.members-table tbody tr {
    transition: background 0.15s ease;
}

.members-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.sidebar-search:focus,
.table-search:focus {
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
    transition: box-shadow 0.2s;
}

#LoadingBar {
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.match-badge {
    animation: badgePopIn 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes badgePopIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

html {
    scroll-behavior: smooth;
}