.calNearbyButton {
    background-color: #00a0ff;
    color: white;
    border: none;
    cursor: pointer;
    height: 40px;
}
.calNearbyButton:hover {
    height: 40px;
    background-color: red;
}
.loader {
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #3498db;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
    margin:0 auto;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.loading {
    padding: 10px;
    border: none;
    cursor: not-allowed;
    background: none;
    display: block;
    justify-content: center;
    align-items: center;
}
.loadwheel {
    border: 20px solid #f3f3f3;
    border-radius: 50%;
    border-top: 6px solid #06A0FF;
    border-right: 6px solid #FFA008;
    border-bottom: 6px solid #FF068F;
    border-left: 6px solid #2bd605;
    width:12px;
    height: 12px;
    margin: 0 auto; /* Center horizontally */
    -webkit-animation: spin 7s linear infinite;
    animation: spin 7s linear infinite;
  }
    @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
    @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }