/* Global tweaks */
body {
    font-size: 0.95rem;
}

.display-flex {
    display: flex;
}
/* Tables */
.table th {
    white-space: nowrap;
}

.table td {
    vertical-align: middle;
}
.align-items-center {
    align-items: center;
}

/* Log gallery thumbnails */
.log-gallery img {
    transition: transform 0.2s ease;
    cursor: pointer;
}

.log-gallery img:hover {
    transform: scale(1.05);
}

/* Report totals */
.table tfoot th {
    font-weight: bold;
}

/* Utility */
.text-muted-small {
    font-size: 0.85rem;
    color: #6c757d;
}

.nowrap {
    white-space: nowrap;
}

.table-responsive-x {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    /* smooth on mobile */
}

.table-responsive-x table {
    min-width: 900px;
    /* adjust if needed */
}

.card {
    background: #e8e8e8;
    border: 1px solid gray;
    padding: 10px;
    border-radius: 5px;
}