.submit-form h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.submit-form .form-group {
    margin-bottom: 15px;
}

.submit-form label {
    align-self: start;
    font-size: 14px;
    color: #333333;
    margin-bottom: 5px;
    margin-right: 10px;
    display: inline-block;
    width: 55%;
    text-align: right;
}

.submit-form input[type="number"] {
    width: 40%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s, background-color 0.3s;
    box-sizing: border-box;
}

.submit-form input[type="number"]:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.5);
}

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

.submit-button:active {
    background-color: #003f7f;
}

.modal {
    display: none;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4); /* Black with opacity */
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.btn {
    background: #4945FF;
    border-radius: 4px;
    padding: 10px;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.btn:hover {
    background: #7B79FF;
}

.submit-button {
    width: 100%;
}

#mission-params-btn {
    top: 10px;
    left: 10px;
}

/* bring to front */
.modal, #mission-params-btn {
    position: fixed;
    z-index: 1000; /* Sit on top */
}

#map.leaflet-container {
    background-color: #d5dadc;
}
.leaflet-draw-edit-edit, .leaflet-draw-draw-circle, .leaflet-draw-edit-remove {
	position: relative;
}
.leaflet-draw-edit-edit:before, .leaflet-draw-draw-circle:before, .leaflet-draw-edit-remove:before {
    position: absolute;
    top: 3px;
    left: 3px;
    display: block;
    width: 22px;
    height: 22px;
    border: 1px solid #000;
    border-radius: 50%;
    font-size: 20px;
    line-height: 22px;
}
.leaflet-draw-draw-circlemarker:before, .leaflet-draw-draw-circlemarker:after {
    position: absolute;
    left: 9px;
    top: 9px;
    width: 16px;
    height: 16px;
    font-size: 20px;
    line-height: 16px;
}
.leaflet-draw-draw-circlemarker:before {
    content: "";
    background-color: #000;
    border-radius: 50%;
}
.leaflet-draw-draw-circlemarker:after {
	color: #FFF;
}
.leaflet-draw-draw-circle:before, .leaflet-draw-draw-circlemarker:after {
    content: "+";
}
.leaflet-draw-edit-edit:before {
    content: "⇄";
    line-height: 21px;
}
.leaflet-draw-edit-remove:before {
	content: "";
}
.leaflet-draw-edit-remove:after {
    position: absolute;
    top: -1px;
    left: 14px;
    content: "";
    display: block;
    width: 0;
    height: 30px;
    border: 1px solid #000;
    transform: rotate(45deg);
}
.leaflet-disabled:before, .leaflet-disabled:after {
    border-color: #bbb;
}
.leaflet-edit-resize {
    cursor: ne-resize;
}
.leaflet-edit-move, .leaflet-edit-resize {
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-sizing: border-box;
}
.leaflet-edit-move:hover, .leaflet-edit-resize:hover {
    border-color: rgba(255, 255, 255, 1);
}