body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

label {
    display: block;
    margin: 10px 0 5px;
}

select, input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

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

#logs_container {
    margin-top: 20px;
}

#loadingSpinner {
    text-align: center;
    font-size: 16px;
    color: #007bff;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

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

table th {
    background-color: #007bff;
    color: white;
    font-size: 16px;
}

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

table td {
    font-size: 14px;
    color: #333;
}

#downloadBtn {
    margin-top: 20px;
    display: block;
    background-color: #28a745;
}

#downloadBtn:hover {
    background-color: #218838;
}

.header {
    display: flex;           /* Use flexbox for horizontal layout */
    align-items: center;     /* Vertically align items in the center */
    justify-content: center; /* Center the content horizontally */
}
.logo {
    width: 50px; /* Adjust logo size */
    height: 50px;
    margin-right: 10px; /* Space between the logo and title */
}
.title {
    font-size: 2em; /* Adjust the title font size */
}
/* Add some space between the buttons */
.button-container {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.button-container button {
    padding: 10px 20px;
    cursor: pointer;
}

#downloadCSVButton {
    display: none; /* Initially hidden */
}

/* General input field styling */
.input-field {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Ensure select, number, datetime-local, and text input fields have consistent styling */
select, input[type="number"], input[type="text"], input[type="datetime-local"] {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Placeholder styling for consistency */
::placeholder {
    color: #999;
    opacity: 1; /* Override Firefox's default opacity */
}