<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.search-area input[type="text"] {
    padding: 5px 5px 3px;
    font-size: 16px;
    border: 1px solid #D6D6D6;
  }
  
  .search-area input[type="text"]:focus {
    background: #F9F9F9;
  }
  
/*
  .search-result {
    height: 200px;
    width: 600px;
    margin-top: 20px;
    flex-grow: 1;
    flex-basis: 0;
    overflow-y: scroll;
  }
*/
  .search-result {
    max-height: 200px;
    max-width: 600px;
    display: flex;
    flex-grow: 1;
    flex-basis: 0;
    overflow-y: scroll;
  }
  #school-result__list {
    display: flex;
    flex-direction: column;
    background-color: lightgreen;
  }
  #school-result__list :not(:active){
    display: flex;
    flex-direction: column;
    background-color: white;
  }
  #school-result__list :not(:active):nth-child(odd){
    display: flex;
    flex-direction: column;
    background-color: #e5f1f9;
  }
  #school-result__list span {
    display: inline-block;
    padding: 5px;
    background-color: lightgreen;
  }
  #school-result__list span :not(:active){
    display: inline-block;
    padding: 5px;
    background-color: white;
  }
  .target-area {
    margin-top: 50px;
  }
  </pre></body></html>