body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #093A47;
    color: white;
    padding: 15px;
    text-align: center;
    position: relative;
}

.header-content {
    display: flex;
    align-items: center;
}

.header-logo {
    max-height: 50px; /* Adjust as necessary */
    margin-right: 20px;
}

.header-text {
    display: flex;
    flex-direction: column;
}

.header-text h1 {
    margin: 0;
}

.icon-img {
    margin-left: 10px;
    max-width: 25px; /* Adjust the width as needed */
    height: auto;
       
    }

header input {
    position: absolute;
    top: 20px;
    width: 290px;
    height: 30px;
    right: 20px;
    padding: 5px;
    border-radius: 5px;
    border: none;
}

.table-container {
    flex: 1;
    padding: 20px;
    overflow-x: auto;
}

table {
    width: 200%;
    border-collapse: collapse;
    margin: 0 auto;
}

th, td {
    padding: 5px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}


th {
    background-color: #f2f2f2;
}

tr:hover {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}


.pagination-container {
    display: flex;
    justify-content: center;
    padding: 10px;
}

.pagination-container button {
    margin: 0 5px;
    padding: 5px 10px;
    background-color: #093A47;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.pagination-container button:disabled {
    background-color: #187089;
    cursor: not-allowed;
}

footer {
    background-color: #093A47;
    padding: 10px;
    text-align: center;
    color: white;
    font-size: 20px;;
}


