/* style.css */

/* Example: Custom animation for dashboard cards */
@keyframes dashboard-pop {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.dashboard-card {
    animation: dashboard-pop 0.4s cubic-bezier(.4, 0, .2, 1);
}

/* Example: Page-specific tweak for landing page hero */
.landing-hero {
    letter-spacing: 0.02em;
    text-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
}

/* Example: Temporary fix for a third-party widget */
.third-party-widget .btn {
    border-radius: 50px !important;
    font-weight: 600;
}