/* SND Shared Styles - Tabler overrides and customizations */

/* Card links - hover effect for clickable cards */
.card-link {
    text-decoration: none;
    color: inherit;
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease;
}
.card-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: inherit;
}

/* Badge notification positioning */
.badge-notification {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(25%, -25%);
}
