#forms {
    margin-top: 40px;
}

#map-container {
    position: relative;
    overflow: hidden;
}

#map {
    width: 100%;
    height: 100%;
}

#location-options {
    max-height: 10rem;
    overflow-y: auto;
}

#location-options option {
    font-family: 'Arial Unicode MS', Arial, sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.marker{
    display: none;
    position: absolute;
}

.popup {
    display: none;
    position: absolute;
    background-color: rgba(214, 214, 214, 0.9);
    font-size: 12px;
    padding: 5px;
    white-space: nowrap;
}

.popup p {
    margin: 0;
    line-height: 1;
}

#points {
    height: 300px;
    padding: 0;
}

#points-menu {
    overflow: scroll;
}

.point {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.pe-none {
    pointer-events: none;
    margin: 0;
}

.trash {
    transition: 0.2s;
}

.trash:hover {
    color: red;
}

.edit-name {
    color: black;
    text-decoration: none;
    transition: 0.2s;
}

.edit-name:hover {
    color: #269abc;
    text-decoration: none;
}

#max-points-alert {
    display: none;
    justify-content: space-around;
    padding: 10px;
    margin: 10px 0;
    align-items: center;
    border-radius: 5px;
}

.italic {
    font-style: italic;
}

.bold {
    font-weight: bold;
}

.text-white {
    color: white;
}

#coordinates-container {
    display: none;
}

.glyphicon-info-sign {
    font-size: 35px;
    vertical-align: middle;
    color: #269abc;
}

#image-container {
    position: relative;
}

#loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ddd;
    border-top: 4px solid #04346b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

#table {
    border: 1px solid black;
}

.table-border-left-dark {
    border-left: 1px solid black;
}

.table-border-left-light {
    border-left: 1px solid lightgrey;
}

tr td:nth-child(2), tr td:nth-child(4) {
    border-left: 1px solid black;
}

tr td:not(:nth-child(2)):not(:nth-child(4)) {
    border-left: 1px solid lightgrey;
}

.percentile-col {
    width: 12%;
}

.coordinate-col {
    width: 10%;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}