
body {
    font-family: Arial, sans-serif;
    background-color: #e0f7fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.logo {
    width: 60px;
    height: auto;
    margin-bottom: 1px;
}

h1 {
    margin-bottom: 5px;
}

form {
    margin-bottom: 5px;
}

label {
    display: block;
    margin-bottom: 8px;
}

input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

#staffInfo {
    margin-top: 20px;
}

footer {
    margin-top: 100px;
    text-align: center;
    font-size: 14px;
    color: #777;
}








body {
    font-family: Arial, sans-serif;
    background-color: #e0f7fa;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 1200px;
    text-align: center;
}

h1, h2 {
    margin-bottom: 10px;
}

a.button-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    margin: 5px;
}

a.button-link:hover {
    background-color: #0056b3;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

th {
    background-color: #f4f4f4;
}

img {
    max-width: 50px;
}

footer {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #777;
}

@media (max-width: 1024px) {
    .container {
        width: 90%;
    }

    table {
        overflow-x: auto;
        display: block;
    }

    th, td {
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    table {
        width: 100%;
        overflow-x: auto;
    }

    th, td {
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .container {
        width: 100%;
        padding: 10px;
    }

    a.button-link {
        display: block;
        width: 100%;
        margin-bottom: 5px;
    }

    table {
        font-size: 14px;
    }

    th, td {
        padding: 8px;
    }
}



body {
    font-family: Arial, sans-serif;
    background-color: #e0f7fa;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 750%;
    max-width: 1200px;
    text-align: center;
}

img.logo {
    width: 150px;
}

form {
    margin: 0 auto;
    max-width: 600px;
}

label {
    display: block;
    margin: 10px 0 5px;
}

input[type="text"], input[type="file"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

th {
    background-color: #f4f4f4;
}

img {
    max-width: 100px;
}

footer {
    margin-top: 80px;
    text-align: center;
    font-size: 14px;
    color: #777;
}



/* Basic Reset */
body, h1, h2, p, table, th, td {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 70px; /* Increased space below the container */
}

.logo {
    display: block;
    margin: 0 auto 0px;
    width: 150px;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

form {
    text-align: center;
    margin-bottom: 20px;
}

input[type="text"] {
    padding: 10px;
    font-size: 16px;
    width: calc(100% - 22px);
    max-width: 300px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    background-color: #007BFF;
    color: #fff;
}

button:hover {
    background-color: #0056b3;
}

footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #777;
    position: absolute; /* Positioned absolutely to avoid overlap */
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 10px 0;
}

#staffInfo {
    margin-top: 20px; /* Add space above the staff info */
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f2f2f2;
}

img {
    max-width: 100%;
    height: auto;
}

/* Responsive design */
@media screen and (max-width: 768px) {
    .container {
        width: 95%;
        padding: 10px;
    }

    input[type="text"] {
        width: calc(100% - 22px);
    }

    table {
        font-size: 14px;
        overflow-x: auto; /* Allows horizontal scrolling for tables on small screens */
    }

    button {
        width: 100%;
        margin-top: 10px;
    }

    footer {
        position: static; /* Make footer static for better layout on small screens */
        padding: 15px 0;
    }
}


.button-link {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #007BFF;
    text-decoration: none;
    border: 1px solid #007BFF;
    border-radius: 4px;
    margin-top: 20px;
    text-align: center;
}

.button-link:hover {
    background-color: #007BFF;
    color: #fff;
}



/* Ensure the logo always has space around it */
.logo {
    display: block;
    margin: 0 auto 20px; /* Center the logo and add space below it */
    max-width: 100%; /* Ensure the logo does not overflow */
    height: auto; /* Maintain aspect ratio */
}

/* Add padding to the container for better spacing */
.container {
    padding: 20px;
    margin-bottom: 60px; /* Ensure space is available for the footer */
    background-color: #f9f9f9; /* Optional: add a background color */
}

/* Style the form */
form {
    margin-bottom: 20px; /* Space between the form and results */
}

#staffInfo {
    padding-top: 20px; /* Add padding to the top of the results */
}

/* Style for footer */
footer {
    padding: 10px 0;
    text-align: center;
    background-color: #eee;
    border-top: 1px solid #ddd;
}

/* Style the "Go Back" button */
.button-link {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #007BFF;
    text-decoration: none;
    border: 1px solid #007BFF;
    border-radius: 4px;
    margin-top: 20px;
    text-align: center;
}

.button-link:hover {
    background-color: #007BFF;
    color: #fff;
}

/* Ensure responsiveness */
@media (max-width: 600px) {
    .container {
        padding: 10px;
    }
    
    .button-link {
        font-size: 14px;
        padding: 8px 16px;
    }
}
