/* A few custom styles to clean up the UI */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main.container {
    flex: 1;
}

/* Make table actions cleaner */
.table td:last-child,
.table th:last-child {
    white-space: nowrap;
    width: 1%;
}

/* Sticky top for invoice totals */
@media (min-width: 992px) {
    .sticky-top {
        top: 1.5rem;
    }
}
