html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
    overflow-y: hidden; /* Hide vertical scrollbar */
    overflow-x: hidden; /* Hide horizontal scrollbar */
}
.is-loading {
    cursor: not-allowed;
    pointer-events: none;
}
#notification-container {
    top: 20px;
    z-index: 1000;
}
.notification, .warning {
    margin-top: 110px;
    left: 10px;
}
#places-table-container {
    border-radius: 15px;
    margin-top: 10px;
    width: 480px;
    position: absolute;
    top: 50px;
    right: 11px;
    max-height: 86%;
    overflow-y: auto;
    overflow-x: auto;
    z-index: 1000;
}

#places-table {
    opacity: 0.9;
    margin-top: 0px;
    font-size: 10px;
    border-collapse: separate;
    width: 100%;
    table-layout: fixed; /* Add this line */
}

#places-table th:nth-child(1),
#places-table td:nth-child(1) {
    width: 15%; /* adjust as needed */
}

#places-table th:nth-child(2),
#places-table td:nth-child(2) {
    width: 55%; /* adjust as needed */
}

#places-table th:nth-child(3),
#places-table td:nth-child(3) {
    width: 15%; /* adjust as needed */
}

#places-table th:nth-child(4),
#places-table td:nth-child(4) {
    width: 15%; /* adjust as needed */
}
#places-table td {
    word-wrap: break-word; /* Add this line */
}
#places-table th {
    font-size: 12px;
}
/* table {
    border-radius: 15px;
}
table tbody tr:last-of-type {
    border-bottom: none;
  } */

#radius {
    width: 80px;
}
#points {
    width: 60px;
}
#map {
    height: 100%;
    width: 100%;
    position: relative;
    border-radius: 0;
}
#search-form {
    position: absolute;
    top: 40px; /* adjust as needed */
    left: 275px; /* adjust as needed */
    transform: translateX(-50%);
    z-index: 1000; /* Ensure the form is above the map */
}
#form-container {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000; /* Ensure the form is above the map */
}
  
#map-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; /* Space between form elements */
}
#top-container {
    margin-bottom: 0;
    z-index: 1001;
}
.spacer {
    height: 25px; 
}