* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

h2 {
    margin-bottom: 20px;
    color: #333;
}

.message {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    border-radius: 4px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    overflow-x: auto; /* Add this for horizontal scrolling on small screens */
}

thead th {
    background-color: #1b90bb;
    color: #FFFFFF;
    padding: 8px;
    border: 1px solid #000000;
    text-align: center;
    font-weight: bold;
}

tbody td {
    padding: 8px;
    border: 1px solid #000000;
}

table tr {
    background-color: #dddddd;
    color: #000000;
    text-align: left;
}

/* Add media queries to handle responsiveness */
@media screen and (max-width: 600px) {
    .container {
        width: 90%; /* Adjust the width for smaller screens */
    }

    thead {
        display: none; /* Hide the table header */
    }

    tbody td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    tbody td:before {
        content: attr(data-label); /* Add a data-label attribute for each td element */
        font-weight: bold;
        display: block;
        margin-bottom: 10px;
    }

    tbody tr {
        margin-bottom: 20px;
        border-bottom: 2px solid #ddd;
        display: block;
    }
}

.pagination {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.pagination a, .pagination span {
    background-color: #fff;
    color: #999;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin: 0 5px 8px;
    border-radius: 5px;
    min-width: 20px;
    padding: 0 10px;
    height: 40px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    position: relative;
    font-family: Helvetica, Arial, sans-serif;
}

.pagination span {
    pointer-events: none;
}

.pagination a.page-active {
    background-color: #1b90bb;
    color: #fff;
}

.pagination a:hover {
    background-color: #f00;
    color: #fff;
}

.error {color: #FF0000;}

.responsive {
    width: 100%;
    height: auto;
}

.dofo {
    width: 100%;
    color:red;
}

* {
    box-sizing: border-box;
}

.zoom {
    padding: 5px;
    background-color: LIGHTBLUE;
    transition: transform .2s;
    margin: 0 auto;
}

.zoom:hover {
    -ms-transform: scale(1.5); /* IE 9 */
    -webkit-transform: scale(1.5); /* Safari 3-8 */
    transform: scale(1.5); 
}
