a {
    position: relative;
    color: #9ffcb9; 
    text-decoration: none;
    display: inline-block; 
  }
  
  a::after {
    content: '';
    position: absolute;
    bottom: 1px; 
    width: 0;
    height: 2px; 
    background: #9ffcb9; 
    transition: all 0.3s ease;
  }
  
  a:hover::after {
    width: 100%;
    left: 0;
  }
  
              .brand-logo img {
      height: 50px; 
      width: auto;
  }
  
  nav, .page-footer {
      background-color: #2c2c2c;
  }
  
  .header-text {
      font-size: 2.5rem;
      margin-bottom: 20px;
  }
  
  .header-subtext {
      font-size: 1.5rem;
      margin-bottom: 20px;
  }
  
  .cool-line-animation {
      width: 50px;
      height: 3px;
      background-color: #9ffcb9;
      margin-bottom: 20px;
      z-index: 1001
  }
  
  .sticky-bottom-bar {
      position: fixed;
      bottom: 0;
      width: 100%;
      background-color: #2c2c2c;
      padding: 10px 0;
      z-index: 1000;
  }
  
  .btn {
      display: flex;               
      justify-content: center;    
      align-items: center;       
      background-image: linear-gradient(60deg, #d4d4d4, #aaaaaa, #d4d4d4); 
      background-size: 300% 100%; 
      animation: shimmer 5s infinite; 
      color: black;             
      border: none;              
      outline: none;             
      cursor: pointer;           
      padding: 10px 20px;         
      transition: background-color 0.6s, color 0.6s; 
  }
  
  /* Dark mode animation effect on hover */
  .btn:hover {
      background-color: #222;    
      color: #f5f5f5;             
      animation: none;            
  }
  
  @keyframes shimmer {
      0% {
          background-position: 200% 0;
      }
      100% {
          background-position: -200% 0;
      }
  }
  
  .search-input-wrapper {
      position: relative;
  }
  
  #search-results, #search-results-mobile {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: #fff;
      border: 1px solid #ccc;
      width: 200px;
      max-height: 150px;
      overflow-y: auto;
      z-index: 1001; 
  }
  
  #search-results a, #search-results-mobile a {
      display: block;
      padding: 8px 16px;
      text-decoration: none;
      border-bottom: 1px solid #eee;
      color: #333;
  }
  
  #search-results a:hover, #search-results-mobile a:hover {
      background-color: #f5f5f5;
  }
  
  .icon-wrapper {
      display: flex;
      align-items: center;
  }
  
  .material-icons {
      margin-right: 10px;
  }
  
  .search-input-wrapper input::placeholder {
      color: #ffffff;
  }
  
  .search-input-wrapper input {
      color: #ffffff;
  }
  
  .weatherContainer {
      padding: 20px;
      max-width: 600px;
      margin: 50px auto;
  }
  
  .weatherCard {
      background-color: #333;
      border-radius: 15px;
      padding: 20px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  .weatherInput, .weatherSubmit {
      display: block;
      margin: 10px 0;
      padding: 10px;
      width: 100%;
      background: #555;
      border: none;
      color: #fff;
      border-radius: 8px;
      transition: background 0.3s ease;
  }
  
  .weatherInput:hover, .weatherSubmit:hover {
      background: #667;
  }
  
  .weatherInput:focus {
      outline: none;
      box-shadow: 0 0 5px #9ffcb9;
  }
  
  .weatherLabel, .weatherInput, .weatherSubmit {
      opacity: 0;
      transform: translateY(50px);
  }
  
  .weatherTitle {
      text-align: center;
      margin-bottom: 20px;
  }
  
  .bg-layer {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 120%; 
      background-image: url('AnotherImage.png'); 
      z-index: -1;
      background-attachment: fixed;
      background-position: center center;
      height: 150%; 
      top: -25%;  
  }
  
  .parallax-title, .parallax-paragraph {
      z-index: 3; 
      opacity: 1; 
      transform: translateY(50px);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      background-color: rgba(0, 0, 0, 0.4); 
      padding: 30px;
      border-radius: 5px; 
      display: inline-block; 
  }
  .sidenav .search-input-wrapper input[type="text"] {
      color: black;
  }
  
  .search-result-item a {
      text-decoration: none;
      color: #333;
      display: block;
      padding: 5px 0;
  }
  
  .search-result-item a:hover {
      color: #9ffcb9;
  }
  
  .search-result-item.active-result {
      background-color: #f5f5f5;
  }
  
  .nav-wrapper {
      position: relative; 
  }
  
  .search-input-wrapper {
      position: relative; 
  }
  
  .search-input-wrapper {
      position: relative;
  }
  
  #search-results {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      border: 1px solid #ccc;
      background-color: white;
      z-index: 10; 
      max-height: 200px;
      overflow-y: scroll;
  }
  
  #search-results a {
      display: block;             
      padding: 10px;            
      color: black;             
      text-decoration: none;    
      transition: all 1.0s ease;
  }
  
  #search-results a:hover {
      color: white;             
      background-image: linear-gradient(60deg, #d4d4d4, #aaaaaa, #d4d4d4); 
      background-size: 300% 100%;
      animation: shimmer 6s infinite;
  }
  
  @keyframes shimmer {
      0% {
          background-position: 200% 0;
      }
      100% {
          background-position: -200% 0;
      }
  }
  
  #search-results div {
      padding: 5px;
      cursor: pointer;
  }
  
  .search-input-wrapper {
      position: relative;
  }
  
  #search-results {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      border: 1px solid #ccc;
      background-color: white;
      z-index: 10; 
      max-height: 200px;
      overflow-y: scroll;
  }
  
  #search-results div {
      padding: 5px;
      cursor: pointer;
  }
  
  .sidenav .search-input-wrapper {
      position: relative;
      padding: 10px;
  }
  
  .sidenav #mobile-search-results {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      border: 1px solid #ccc;
      background-color: white;
      z-index: 10; 
      max-height: 200px;
      overflow-y: scroll;
      width: 100%; 
  }
  
  .sidenav #mobile-search-results a {
      display: flex;               
      justify-content: center;  
      align-items: center;       
      color: black;             
      text-decoration: none;    
      background-color: white;   
      transition: all 3.0s ease;
  }
  
  /* Hovered State */
  .sidenav #mobile-search-results a:hover {
      color: white;  
      background-image: linear-gradient(60deg, #d4d4d4, #aaaaaa, #d4d4d4); 
      background-size: 300% 100%; 
      animation: shimmer 6s infinite;
  }
  

  @keyframes shimmer {
      0% {
          background-position: 200% 0;
      }
      100% {
          background-position: -200% 0;
      }
  }
  .shadow-text {
          text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      }
  
      .sticky-bottom-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: #333; 
      padding: 5px 0;
      box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  }
  
  .unique-bar-content {
      display: flex;
      justify-content: space-around;
      align-items: center;
  }
  
  .unique-nav-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      color: white;
      font-size: 14px;
  }
  
  .material-icons {
      font-size: 24px;
      margin-bottom: 5px;
  }
  
  @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
  
  #hourly-weather {
      display: flex;
      flex-direction: column;
      align-items: center; 
      justify-content: center; 
      width: 100%;
      background-color: #f5f5f5;
      color: #333;
      font-family: 'Roboto', sans-serif;
      box-sizing: border-box; 
  }
  
  .hourly-forecast {
      display: flex;
      gap: 16px; 
      justify-content: space-between; 
      align-items: center;
      padding: 15px;
      border-bottom: 2px solid #e0e0e0;
      margin-bottom: 5px;
      width: 55%; 
      box-sizing: border-box;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  @media (max-width: 780px) {
      .hourly-forecast {
          width: 80%;
      }
  }
  
  .hourly-forecast:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      background-color: #e9e9e9;
  }
  
  .hour-detail {
      margin-right: 20px;
      color: #212121;
      text-align: center; 
  }
  
  .hour-detail .temp {
      font-size: 1.2rem;
      font-weight: 700;
  }
  
  .hour-icon {
      width: 30px;
      height: 30px;
      margin-right: 10px;
      filter: grayscale(100%);
      transition: filter 0.3s ease;
  }
  
  .hourly-forecast:hover .hour-icon {
      filter: grayscale(0);
  }
  
  @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
  }
  
  .hourly-forecast {
      display: flex;
      animation: fadeIn 0.5s ease-out;
  }
  

  @media (max-width: 768px) {
      .hourly-forecast {
          align-items: center; 
      }
  
      .hour-detail {
          margin: 5px 0;
      }
  
      .hour-detail .temp {
          font-size: 1rem; 
      }
  
      .hour-icon {
          width: 25px;
          height: 25px;
      }
  }
  
  .hourly-forecast:focus-within {
      outline: 2px dashed #333;
      outline-offset: 2px;
  }
  
  .weather-icon {
      width: 32px; 
      height: 32px;
      display: block;
  }
  
  .date-label {
      font-weight: bold;
      width: 100%; 
      text-align: center; 
      margin-top: 20px;
      margin-bottom: 5px;
  }
  
  .date-row {
    font-size: 1.25em;
    width: 100%;
    left: 5px;
    font-weight: bold;
    margin: 20px 0;
    padding: 5px 10px;
    background-color: #9ffcb9;
    color: #333;
    border-left: 4px solid #6f7070;
    text-align: left; 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
  }
  
  .date-separator {
    border-top: 1px solid #ccc;
    margin-top: 10px;
  }
  
  .date-separator:first-child {
    display: none;
  }
  .brand-logo .logo-container {
      max-width: 100px; 
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  .brand-logo img {
      top: 5px;
      left: 5%;
      width: 100%;
  }
  
  .brand-logo .logo-container {
      max-width: 80px; 
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  .brand-logo img {
      width: 100%;
      height: 2%;
  }

  .email-link {
    color: #007bff; 
}

  .report-link {
    color: #007bff; /* Replace with your desired color */
}