body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 20px;
    background-color: #f9fafb;
  }
  
  h1 {
    font-size: 2em;
    color: #004466;
    text-align: center;
    margin-bottom: 15px;
  }
  
  p {
    text-align: center;
    color: #555;
  }
  
  /* Form styling */
  form#dateForm {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  form#dateForm input,
  form#dateForm button {
    padding: 8px;
    font-size: 1em;
    width: 180px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  form#dateForm button {
    background-color: #004466;
    color: #fff;
    cursor: pointer;
    border: none;
  }
  
  form#dateForm button:hover {
    background-color: #006699;
  }
  
  /* Map container styling */
  #neoMap {
    height: 500px;
    width: 100%;
    margin-top: 20px;
    border-radius: 10px;
    border: 2px solid #004466;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  /* Message container styling */
  .message {
    display: none;
    padding: 10px;
    text-align: center;
    margin: 15px auto;
    border-radius: 5px;
    font-size: 1.1em;
    max-width: 500px;
  }
  
  /* Loading message styling */
  .loading {
    background-color: #e0f7fa;
    color: #00796b;
  }
  
  /* Error message styling */
  .error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
  }
  
  /* No results message styling */
  #noResultsMessage {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
  }
  