body {
    /*margin: 0 5px 10px 5px;*/
    padding: 0 5px 10px 5px;
    font-family: Arial, sans-serif;
}

.banner {
    background-color: #004080;
    color: white;
    padding: 10px 10px 10px 10px;
    text-align: right;
    margin-bottom: 15px;
}

.banner button {
    background-color: #c0c0c0;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table tbody tr:hover {
    background-color: #f2f2f2;
}

th, td {
    border: 1px solid black;
    padding: 8px;
    text-align: left;
}

th {
    position: relative;
}

.sort-icon {
    position: absolute;
    right: 10px;
    cursor: pointer;
    user-select: none;
}

.sort-icon:hover {
    color: gray;
}

.chosen-container {
    width: 300px !important;
}

.form-container {
    background-color: #c8d0d4;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    display: inline;
}



#loading-overlay {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100% - 60px);
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-size: 1.5rem;
    font-weight: bold;
}


#loading-overlay .spinner-border {
    width: 3rem;
    height: 3rem;
    margin-right: 1rem;
}


#map {
    height: 100%;
    width: 100%;
    margin: 20px auto;
    border: 1px solid #ccc;
    border-radius: 8px;
}

