.total-results {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
}
        .table-wrapper {
        overflow-x: auto; /* Enable horizontal scrolling */
    }

    .table th, .table td {
        white-space: nowrap; /* Prevent text from wrapping */
        padding: 8px; /* Add padding for better readability */
    }

    .table th {
        background-color: #f8f9fa; /* Light background for headers */
        border-bottom: 2px solid #dee2e6; /* Add a bottom border to headers */
    }

    .table td {
        max-width: 200px; /* Adjust the max-width as needed */
        overflow: hidden; /* Hide overflowing text */
        text-overflow: ellipsis; /* Display ellipsis (...) for overflow */
    }

    .table img {
        max-height: 50px; /* Limit the height of images */
        width: auto; /* Keep the original aspect ratio */
    }

    .search-container {
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .search-form {
        display: flex;
        width: 100%;
        max-width: 600px;
        margin-bottom: 10px;
    }

    .search-input {
        flex: 1;
        padding: 10px;
        border: 1px solid #ced4da;
        border-radius: 4px;
        font-size: 14px;
        margin-right: 10px;
    }

    .search-button {
        padding: 10px 20px;
        border: none;
        border-radius: 4px;
        background-color: #007bff;
        color: white;
        font-size: 14px;
        cursor: pointer;
    }

        .search-button:hover {
            background-color: #0056b3;
        }

        .search-button:focus {
            outline: none;
            box-shadow: 0 0 0 2px rgba(38, 143, 255, 0.5);
        }

    .results-info {
        text-align: center;
        margin-bottom: 20px;
    }

    .pagination-container {
        margin-top: 20px;
    }

    .pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .pagination-link {
        padding: 10px;
        border: 1px solid #dee2e6;
        border-radius: 4px;
        margin: 0 5px;
        text-decoration: none;
        color: #007bff;
        cursor: pointer;
    }

        .pagination-link.active {
            background-color: #007bff;
            color: white;
        }

        .pagination-link.disabled {
            color: #6c757d;
            cursor: not-allowed;
        }

        .pagination-link:hover:not(.disabled) {
            background-color: #e9ecef;
        }
