.menu {
    z-index: 1000;
}

.btn-group a.btn {
    border: 2px solid #035e26;
    border-radius: 5px;
}

.flex-d.btn-group {
    display: flex;
    justify-content: space-between;
}

.flex-d.btn-group a[type="button"] {
    flex: 1;
    min-width: 0;
    margin: 2px;
    font-size: .875em;
}


html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
}

.dropdown-menu {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 12px 10px;
    letter-spacing: 1px;
    font-size: .875em;
    font-weight: 400;
    background: white;
    color: #464646
}


.dropdown-menu a:hover {
    color: black;
    background: #f2f2f2;
}

.footer {
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}



@media (max-width: 768px) {
    .flex-d.btn-group {
        flex-direction: column;
    }

    .flex-d.btn-group a[type="button"] {
        flex: none;
        width: 100%;
        margin: 5px 0;
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
    }

}

#map {
    width: 100%;
    height: 50vh;
    /* 50% of the viewport height */
}

.leaflet-container {
    /* all maps */
    width: 100%;
    height: 600px;
    max-height: 600px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
    position: relative;
}

#specialbigmap {
    height: 800px;
}

/* Resize the "display_raw" textbox */
.django-leaflet-raw-textarea {
    width: 100%;
}

.asteriskField {
    display: none;
}

/* The modal container */
#deleteConfirmationModal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

/* The modal content */
.modal-content {
    background-color: #ffffff;
    margin: 15% auto;
    padding: 10px;
    border: 1px solid #888;
    border-radius: 5px;
    width: 300px;
    text-align: center;
}

.modal-actions {
    text-align: center;
    background-color: #ffffff;
    /* Set to an opaque color */
    padding: 10px;
    /* Adjust padding as needed */
}