/* Container for pagination */
.d-flex {
    display: flex;
    padding: 10px 0;
}


/* force the wrapper itself to fill the available space */
.log-table-wrapper,
#log-scroll-top,
#log-scroll-bottom {
    width: 100%;
    max-width: 100%;
}

/* let the table expand horizontally as far as it needs */
.log-table-wrapper table {
    width: 100%;
    min-width: 100%;
}



/* Pagination navigation */
.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Pagination links */
.pagination a, .pagination span, .pagination em {
    color: #333;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    margin: 0 4px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Current page */
.pagination .current {
    background-color: #4CAF50;
    color: white;
    border: 1px solid #4CAF50;
}

/* Disabled previous/next links */
.pagination .previous_page.disabled, .pagination .next_page.disabled {
    color: #ccc;
    border: 1px solid #ddd;
    cursor: not-allowed;
}

/* Hover effect for links */
.pagination a:hover:not(.current) {
    background-color: #ddd;
    color: #4CAF50;
}

/* Focus and active states */
.pagination a:focus, .pagination a:active {
    outline: none;
    background-color: #eee;
    color: #4CAF50;
}

/* Specific styles for navigation controls */
.pagination .previous_page, .pagination .next_page {
    font-weight: bold;
}



pre.json {
    background-color: #f8f8f8;
    padding: 10px;
    border-radius: 5px;
    overflow: auto;
}

pre.json code {
    display: block;
    white-space: pre-wrap;
    word-wrap: break-word;
}


/* Additional custom styles for the table */
.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
}

.table-bordered {
    border: 1px solid #dee2e6;
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

.thead-dark th {
    color: #fff;
    background-color: #343a40;
    border-color: #454d55;
}

.text-center {
    text-align: center;
}

/* Add some padding for table cells */
.table td, .table th {
    padding: 12px !important;
    vertical-align: middle;
    border-top: 1px solid #dee2e6;
}

/* Responsive table */
.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}



