/* InvoicingZen custom styles */

h1, h2, h3 {
    color: #337ab7;
}

.navbar-brand {
    font-weight: 700;
}

/* Table row links */
tr[data-href] {
    cursor: pointer;
}
tr[data-href]:hover {
    background-color: rgba(0, 0, 0, 0.04);
}

/* Filter input */
.filter-input {
    max-width: 300px;
}

/* Flash messages auto-dismiss */
.alert-dismissible {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Print styles */
@media print {
    .navbar, footer, .btn, .no-print {
        display: none !important;
    }
    main {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
}

/* Badge spacing in tables */
.table .badge {
    font-weight: 500;
}

/* Card stat blocks (admin) */
.card h3 {
    margin-bottom: 0;
}
