header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo {
    flex: 0 0 auto;
}

header .title-bar {
    flex: 1 1 auto;
    text-align: center;
    max-height: 150px;
    text-size-adjust: auto;
    font-size: x-large;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

header .logo img {
    max-width: 150px;
    max-height: 150px;
    width: auto;
    height: auto;
    background-color: #8c7344;
}

body {
    background-color: #8c7344;
    /* Dark green */
}

button .action {
    text-decoration: none;
    padding: 5px 10px;
    background-color: #0f4d0b;
    color: white;
    border-radius: 5px;
    display: inline-block
}
input[type="text"]::-webkit-file-upload-button,
input[type="text"]::file-selector-button,
input[type="number"]::-webkit-number-selector-button,
input[type="number"]::number-selector-button,
form input[type="file"],

form select,
form button {
    text-decoration: none;
    padding: 5px 10px;
    background-color: #0f4d0b;
    color: white;
    border-radius: 5px;
    display: inline-block;
    border: none;
    font-size: 16px;
}

form input[type="file"] {
    font-size: 16px;
    padding: 10px;
    background-color: #8c7344;
    
    cursor: pointer;
}



form textarea {
    resize: vertical;
}
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

form div {
    display: flex;
    align-items: center;
}

form label {
    width: 100%p; /* Set a fixed width for labels */
    text-align: right;
    margin-right: 10px;
    margin-left: 50px;
}

input[type="text"],
input[type="number"] {
    flex: 1; /* Allow input fields to take up the remaining space */
    background-color: white ;
    text-decoration: none;
    padding: 5px 10px;
    color: black;
    border-radius: 5px;
    border: none;
    font-size: 16px;
}
