.unit-form-container {
    text-align: center;
    align-items: center;
    margin: 20px auto;
}

.unit-form {
    text-align: center;
    margin: auto;
    max-width: 30%;
}

.unit-input, .unit-button {
    display: inline-block; /* Make input and button inline-block */
    padding: 10px;
    margin: 10px 0; /* Add margin to separate input and button */
    font-size: 16px;
    border-radius: 5px;
    box-sizing: border-box; /* Ensures padding does not affect total width */
}

.unit-input {
    width: calc(100% - 22px); /* Adjust width to fit inside the form */
    border: 1px solid #ccc;
}

.unit-button {
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
}

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

.highlight {
    fill: red;
}
.unit-info {
    margin: 20px;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
}
.error-message {
    margin: 20px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}
#storage-map {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}