/* General body styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f7f6;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure body takes the full height of the viewport */
}

/* Main content container */
.container {
    width: 80%;
    margin: 30px auto;
    padding: 20px;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    flex: 1; /* Make the container take up remaining space to push footer down */
}

/* Header styles */
header {
    display: flex;
    justify-content: center; /* Center header content horizontally */
    align-items: center; /* Vertically align content in the middle */
    background-color: #bcbcbc;
    color: white;
    padding: 20px;
    width: 100%;
}

header img {
    width: 250px; /* Adjust logo size */
    height: auto;
    margin-right: 20px; /* Space between logo and company name */
}

header h1 {
    margin: 0;
    font-size: 24px;
    text-align: center;
}

/* Footer styles */
footer {
    background-color: #92bbe5;
    color: white;
    padding: 10px 0;
    text-align: center;
    width: 100%;
    margin-top: auto; /* Push footer to the bottom when content is small */
    display: flex;
    justify-content: center;
    align-items: center;
}

footer p {
    margin: 5px 0;
}

/* Form and table styles */
form {
    margin-top: 20px;
}

select, input[type="text"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
}

button {
    margin: 10px 5px;
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #2980b9;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table th,
table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

table th {
    background-color: #3498db;
    color: white;
}

table tr:hover {
    background-color: #f1f1f1;
}

/* Highlighting search term */
.highlight {
    background-color: yellow;
    font-weight: bold;
}

