body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

#retrieveDataSection {
    max-width: 80%; /* Set max width to 80% of the screen */
    width: 500px;
    margin: 50px auto; /* Center the section */
    background-color: #e0e0e0; /* Slightly darker background color */
    padding: 20px; /* Add some padding for better spacing */
    border-radius: 8px; /* Optional: add rounded corners */
}

#retrieveDataSection > h1{
    text-align: center;
}

#outputSection {
    margin-top: 20px; /* Add some space above the output section */
    max-width: 80%;
    margin: 0 auto;
}

div {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

button {
    padding: 10px 15px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

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

#tableContainer {
    overflow-x: auto;
    width: 100%;
}

#tableContainer table {
    min-width: 800px; /* Ensures table won’t squish too much on small screens */
}

table th {
    background-color: #007BFF;
    color: white;
    text-align: left;
}

table tr:nth-child(even) {
    background-color: #f9f9f9;
}