<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
    proximityStyles.css

    Style sheet for the proximity search application
    Created by S. Gilbert 5.28.2024

    

*/

.widget-medium-left {
    position: fixed;
    width: 30vw;
    max-height: 70vh;
    min-height: 20vh;
    overflow: auto;
    padding: 5px;
    background-color: white;
    border: 1px solid black;
    left: 5vw;
    top: 6vh;
}

.widget-medium-right {
    position: fixed;
    width: 30vw;
    max-height: 70vh;
    min-height: 20vh;
    overflow: auto;
    padding: 5px;
    background-color: white;
    border: 1px solid black;
    right: 5vw;
    top: 6vh;
}

.widget-xsmall{
  position: fixed;
  left: 5vw;
  width: 90vw;
  bottom: 5vh;
  min-height: 50vh;
  max-height: 60vh;
  overflow: auto;
  padding: 3px;
  background-color: white;
  border: 1px solid black;

}

.failure {
    border: 2px solid #eb1c15;
    font-weight: bold;
    padding: 3px;
    background-color: #fca29f;
}

.success {
    border: 2px solid #1c9c17;
    font-weight: bold;
    padding: 3px;
    background-color: #7eeb7a;
}

.loading {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

#dismiss{
    background-color: #0095ff;
    border: 1px solid transparent;
    border-radius: 3px;
    box-shadow: rgba(255, 255, 255, .4) 0 1px 0 0 inset;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: -apple-system,system-ui,"Segoe UI","Liberation Sans",sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.15385;
    margin: 0;
    outline: none;
    padding: 8px .8em;
    position: relative;
    text-align: center;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    white-space: nowrap;
  }
  
  #dismiss:hover,
  #dismiss:focus {
    background-color: #07c;
  }
  
  #dismiss:focus {
    box-shadow: 0 0 0 4px rgba(0, 149, 255, .15);
  }
  
  #dismiss:active {
    background-color: #0064bd;
    box-shadow: none;
  }

  
  #candidates {
    margin-top: 5px;
  }
  

  .candidate{
    background-color: #c1d6f7;
    padding: 3px;
    width: 100%;
    border: 1px solid black;
  }

  .candidate:hover{
    background-color: #daeb5e;
  }

  #searchTextbox{
    padding: 3px;
    height: 30px;
    
    width: 95%;
    outline: none;
    border: 1px solid #cdcdcd;
    border-color: rgba(0, 0, 0, .15);
    background-color: #fad77f;
  }

  #address-feedback{
    margin-top:20px;
    text-align: center;
  }</pre></body></html>