/* Wrapper */
.swpf-wrapper {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  padding: 15px;
  box-sizing: border-box;
}

/* Dropdowns */
.swpf-select {
  width: 100%;
  padding: 5px;
  margin-bottom: 0px;
  font-size: 14px;
}

/* Clear Button Center */
.swpf-center {
  text-align: center;
}
.swpf-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

/* Button style */
.swpf-btn {
  padding: 10px 25px;
  font-size: 15px;
  background-color: #28a745;;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.swpf-btn:hover {
  background-color: #222;
}

/* Spinner style */
.swpf-loader {
  width: 24px;
  height: 24px;
  border: 3px solid #28a745;
  border-top: 3px solid #444;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.swpf-btn {
  padding: 10px 25px;
  font-size: 15px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.swpf-btn:hover {
  background-color: #222;
}

 #swpf-result td:first-child {
    width: 30%;
    font-weight: 600;
  }

/* Responsive Map */

#swpf-map {
  width: 100%;
  height: 300px;
  margin-top: 20px;
  border-radius: 8px;
  display: none;
  border: 1px solid #0073aa
}



  

  #swpf-result td {
    display: table-cell;
    padding: 8px;
  }

  #swpf-result tr {
    display: table-row;
    text-transform: uppercase;
  
}