


.form-group {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.form-group label {
    flex: 0 0 130px; /* Adjust label width as needed */
    margin-right: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    flex: 1;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    max-width: calc(50% - 5px); /* Adjust input width as needed */
}

.form-group input[type="date"],
.form-group input[type="time"],
.form-group input[type="month"] {
    flex: 1;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    max-width: calc(50% - 9%); /* Adjust the max-width to match other input fields */
}

.form-group input[type="number"] {
    max-width: calc(50% - 2px); /* Adjust number input width as needed */
}

.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px; /* Add some bottom margin */
}

table th,
table td {
    padding: 8px;
    border: 1px solid #ccc;
    text-align: center;
}

table th {
    background-color: #f2f2f2; /* Light gray background for table headers */
}

table td input,
table td select,
table td textarea {
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
}

button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.alert {
    color: red;
    margin-bottom: 10px;
}
h1 {
    text-align: center;
    margin-bottom: 20px; /* Add margin to create space between heading and form */
}
.logo-container {
    text-align: center;
    margin-bottom: 20px; /* Add margin to create space between logo and form */
}

