/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #f9f9f9;
}

.container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    width: 25%; /* Adjusted to 25% of its current size */
    height: auto;
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin-right: 15px;
}

nav ul li a {
    text-decoration: none;
    color: #d32f2f; /* Red color from the logo */
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

h1 {
    text-align: center;
    color: #d32f2f; /* Red color from the logo */
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

input, select, button {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

button {
    background-color: #d32f2f; /* Red color from the logo */
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #a40000; /* Darker red */
}

#results {
    margin-top: 20px;
}

.maintenance-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.maintenance-table th, .maintenance-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.maintenance-table th {
    background-color: #f2f2f2;
    color: #333;
}

.maintenance-table tr:nth-child(even) {
    background-color: #f9f9f9;
}
