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 */
}

.icon {
    width: 50px;
    height: 50px;
    background-size: 256px 256px; /* Adjust this to the size of your entire spritesheet */
    background-repeat: no-repeat;
    display: inline-block;
}

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

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

form label {
    width: 150px; /* Set a fixed width for labels */
    text-align: right;
    margin-right: 10px;
}

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