body {
    font-family: 'Roboto', sans-serif;
  }
  
  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: #000;
  }
  
  .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: #000;
    padding: 10px 0;
    z-index: 1000;
  }
  
  .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: #000;
    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: #07062e;
    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%; 
    z-index: -1;
    background-attachment: fixed;
    background-position: center center;
    height: 150%; 
    top: -25%;  
  }
  
  .parallax-title, .parallax-paragraph {
    z-index: 9999; 
    opacity: 1; 
    transform: translateY(50px);
    text-shadow: 2px 2px 4px #9ffcb9;
    padding: 30px;
    border-radius: 5px; 
    display: inline-block; 
  }
  .sidenav .search-input-wrapper input[type="text"] {
    color: black;
  }
  .current-weather-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    margin: 20px auto;
    background-color: #ffffff;
  }
  
  .current-weather-card-title {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .current-weather-card-content {
    text-align: center;
    font-size: 18px;
  }
  
  .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;
  }
  
  /* Styles for links inside the search results container */
  #search-results a {
    display: block;             
    padding: 10px;             
    color: #000;             
    text-decoration: none;    
    transition: all 1.0s ease;
  }
  
  
  #search-results a:hover {
    color: #9ffcb9;              
    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;
  }
  
  /* Styles for the mobile sidenav search results */
  
  .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%; 
  }
  
  /* Initial State */
  .sidenav #mobile-search-results a {
    display: flex;              
    justify-content: center;    
    align-items: center;       
    color: #07062e;               
    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; 
  }
  
  /* Shimmering Gradient Animation */
  @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: #000; 
    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;
  }
  
  .brand-logo .logo-container {
    max-width: 100px; 
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .brand-logo img {
    height: 5.0rem; 
    width: auto;  
  }
  
  #location {
    font-weight: bold; 
    opacity: 0; 
    animation: fadeIn 2s ease forwards; 
  }
  
  @keyframes fadeIn {
    to {
      opacity: 1; 
    }
  }
  .weather-container {
      border-bottom: 2px solid transparent; 
      padding: 10px;
      margin-bottom: 10px;
      background-image: linear-gradient(to right, #c0c0c0, #d3d3d3, #f0f0f0); 
      background-size: 0 2px; 
      background-repeat: no-repeat;
      background-position: bottom;
      transition: background-size 0.5s;
  }
  
  
  .weather-container.animated {
      background-size: 100% 2px;
  }
  
  .weather-icon {
      width: 50px;
      height: auto;
  }
  
  @keyframes expandLine {
      from { border-bottom-width: 0; }
      to { border-bottom-width: 2px; }
  }

  .email-link {
    color: #007bff; 
}

  .report-link {
    color: #007bff; 
}

.dropdown-content {
  display: none;
}

.dropdown-content.show {
  display: block;
}
