/**
 * PlatinumFleet — Custom Overrides sobre Vuexy
 * ────────────────────────────────────────────────
 * Solo overrides y adiciones. El core de Vuexy se mantiene intacto.
 */

/* ─── Quick action cards (dashboard) ────────────────────────── */
.quick-action-link {
    transition: all 0.2s ease;
    text-decoration: none;
}
.quick-action-link:hover {
    transform: translateY(-2px);
    border-color: var(--bs-primary) !important;
    box-shadow: 0 4px 12px rgba(var(--bs-primary-rgb), 0.15);
}

/* ─── Card hover lift ────────────────────────────────────────── */
.card {
    transition: box-shadow 0.2s ease;
}
.card:hover {
    box-shadow: 0 0.25rem 1rem rgba(161, 172, 184, 0.2);
}

/* ─── Avatar initials for users without photo ────────────────── */
.avatar-initial {
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* ─── Sidebar brand tweaks ───────────────────────────────────── */
.app-brand .app-brand-text {
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}
.app-brand .app-brand-logo img {
    max-height: 55px;
    width: auto;
}

/* ─── Better table action buttons ────────────────────────────── */
.table .btn-xs,
.table .btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
}

/* ─── Flash message toastr fine-tuning ───────────────────────── */
.toast-container {
    z-index: 9999;
}

/* ─── Invoice/estimates print layout ─────────────────────────── */
@media print {
    .layout-menu,
    .layout-navbar,
    .content-footer,
    .layout-overlay,
    .drag-target,
    .btn,
    .template-customizer {
        display: none !important;
    }
    .content-wrapper {
        margin: 0 !important;
        padding: 0 !important;
    }
    .layout-page {
        margin-left: 0 !important;
    }
}

/* ─── Vehicle status badges ──────────────────────────────────── */
.badge-vehicle-active   { background-color: rgba(40, 199, 111, 0.12); color: #28c76f; }
.badge-vehicle-service  { background-color: rgba(255, 159, 67, 0.12); color: #ff9f43; }
.badge-vehicle-inactive { background-color: rgba(234, 84, 85, 0.12); color: #ea5455; }

/* ─── Stat card number sizing ────────────────────────────────── */
.card-body h4 {
    font-variant-numeric: tabular-nums;
}
