.maplibregl-popup {
    min-width: 330px;
}

/* Form rows: label left, input right */
.form-row {
    display: flex;
    align-items: center;
    margin-top: 2px;
}

.form-row.error input {
    color: red;
    border-color: red;
}

.form-row label {
    flex: 1; /* label takes up left side */
    margin-right: 10px;
    font-weight: bold;
}

.form-row input {
    padding: 2px 4px;
    box-sizing: border-box;
    margin-left: auto;
}

/* Button styling */
.maplibregl-popup button:not(.maplibregl-popup-close-button){
    width: 100%;
    margin: 5px;
    padding: 6px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

/* Button styling */
.maplibregl-popup button:disabled {
    background-color: #777777;
    cursor: not-allowed;
}

.maplibregl-popup button:disabled:hover {
    background-color: #777777;
}

.maplibregl-popup button:hover:not(.maplibregl-popup-close-button) {
    background-color: #45a049;
}

.maplibregl-popup button.error {
    background-color: #b41703;
}

.maplibregl-popup button.error:hover {
    background-color: #b41703;
}