/* =============================================
   Aura License Server — Custom Styles
   (Tailwind CSS loaded via CDN in HTML)
   ============================================= */

/* Smooth page transitions */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Login card entrance animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.5s ease-out both;
}

/* Table row hover highlight */
.table-row-hover:hover {
    background-color: rgba(99, 102, 241, 0.06);
    transition: background-color 0.2s ease;
}

/* Status badge pulse for active licenses */
@keyframes softPulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.7; }
}

.badge-active {
    animation: softPulse 2s ease-in-out infinite;
}

/* Button press feedback */
button, .btn {
    transition: transform 0.1s ease, box-shadow 0.2s ease;
}

button:active, .btn:active {
    transform: scale(0.97);
}

/* Scrollbar styling (Webkit) */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #1e1b4b;
}

::-webkit-scrollbar-thumb {
    background: #6366f1;
    border-radius: 3px;
}
