/* Small, deliberate overrides on top of vendored Tabler (wwwroot/lib/tabler)
   — anything more structural belongs in Tabler's own classes, not here. */

/* Quick-add cards (Checks/Detail "Add an alert", Home dashboard quick
   actions) get a subtle lift on hover so they read as clickable without
   needing a visible border by default. */
.quickadd-card {
    cursor: pointer;
    transition: box-shadow .15s ease, transform .15s ease;
}

.quickadd-card:hover,
.quickadd-card:focus-within {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .08);
    transform: translateY(-2px);
}
