body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
  }
  
  h1 {
    text-align: center;
  }
  
  .forecast-container {
    width: 80%;
    margin: 0 auto;
    margin-top: 20px;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: white;
    font-size: 0.7em;
  }
  
  th, td {
    padding: 2px;
    text-align: center;
    border: 1px solid #ffffff;
  }
  
  th {
    background-color: #f0f0f0;
  }
  
  .wind-speed, .wind-gusts {
    font-weight: bold;
    transition: background-color 0.3s ease-in-out; /* Smooth transition */
  }
  
  td.wind-direction-cell {
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
  }
  
  .wind-direction {
    display: inline-block;
    transform: rotate(var(--rotation));
    position: relative;
    width: 2px;
    height: 20px;
  }
  
  .wind-direction::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 8px solid #333;
  }
  
  .wind-direction::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 14px;
    background-color: #333;
  }
  
  .search-container {
    position: relative;
    margin-bottom: 1rem;
    width: 300px;
  }
  
  #spot-search {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .suggestions-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 4px 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .suggestions-list li {
    padding: 8px;
    cursor: pointer;
  }
  
  .suggestions-list li:hover {
    background-color: #f0f0f0;
  }
  
  #spot-title {
    margin: 1rem 0;
    font-size: 1rem;
    color: #333;
  }
  
  .recent-item {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .recent-icon {
    color: #666;
    font-style: normal;
    font-size: 0.9em;
  }
  
  .suggestions-list li.recent-item {
    background-color: #f8f8f8;
  }
  
  .suggestions-list li.recent-item:hover {
    background-color: #f0f0f0;
  }
  
  