body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #f9f9f9;
    font-size: 10px; /* Keep small font size for the body */
}

h1 {
    font-size: 24px;
    text-align: center;
    color: #333;
}

input[type="file"], button {
    font-size: 10px; /* Smaller font size */
    margin: 10px 0;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #ffffff;
    cursor: pointer;
}

button {
    background-color: #007bff; /* Primary button color */
    color: white;
    border: none;
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

#tableContainer {
    margin-top: 20px;
    overflow-x: auto; /* Add horizontal scroll for smaller screens */
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto; /* Center the table */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for table */
    border-radius: 5px; /* Rounded corners for the table */
}

th, td {
    padding: 8px; /* Smaller padding for table cells */
    text-align: left;
    border: 1px solid #ddd; /* Light border for cells */
    font-size: 10px; /* Smaller font size for table text */
}

th {
    background-color: #007bff; /* Header background color */
    color: white; /* Header text color */
}

tr:nth-child(even) {
    background-color: #f2f2f2; /* Alternate row color for better readability */
}

tr:hover {
    background-color: #e0e0e0; /* Highlight row on hover with a lighter gray */
}

/* Style for the zoom-out button */
#zoomOutButton {
    font-size: 10px;
    margin-left: 10px; /* Space between buttons */
    background-color: #28a745; /* Green color for zoom out button */
}

#zoomOutButton:hover {
    background-color: #218838; /* Darker green on hover */
}
