
.columns { 
    padding: 1rem;
  }
  
  .columns-page1 {
    padding: 0 !important;
  }
  
  .water-program-page1 {
    z-index: 11 !important;
    min-height: 35px;
  }
  
  .sac-logo {
    float: left;
    margin: 15px
  }
  
  .sac-logo img {
    max-height: 35px;
  }

  .top-nav-row,
  .grid-container {
      margin: 0;
      max-width: 100%;
      text-align: left;
  }
  
  .top-nav-row a,
  .top-nav-row a p,
  .grid-container a {
    font-size: 1em;
    font-weight: 700;
  }
  
  /* styles for the top navigation */
  .top-nav {
    background-color: #004750;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
  }
  .top-nav .d-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  a.nav-item {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
  }
  a.nav-item:hover {
    color: var(--success);
  }
  .nav-item.active {
    color: var(--success);
}
  /* Sign In Button */
  .sign-in-btn {
    background-color: var(--secondary);
    color: white;
    padding: 10px 10px;
    font-weight: bold;
    text-decoration: none;
    display:flex; 
    align-items:center;
    margin-right: 2%;
    min-width: 140px;
  }
  .sign-in-btn:hover {
    filter: brightness(90%);
    text-decoration: none;
  }
  .sign-in-btn svg {
    vertical-align: middle;
    margin-left: 5px;
 }

  
  .water-programs-logo {
    float: left;
    margin: 15px
  }
  
  .water-programs-logo img {
    min-height: 80px;
    min-width: 220px;
  }
  
  #userDropdownMenu {
    display: none;
    position: absolute;
    right: 10px; 
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 250px; 
  }
  
  /* Dropdown Header */
  .dropdown-header {
    padding: 10px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #ddd;
    text-align: left;
  }
  
  .dropdown-header span {
    font-size: 0.9rem;
    color: #555;
  }
  
  /* Style for the dropdown items */
  .dropdown-item {
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
    display: block;
    text-align: left;
  }
  
  .dropdown-item:hover {
    background-color: #f0f0f0;
  }
  
  /* Style for the hamburger menu */
  .smaller-nav .hamburger {
    display: none; 
    color: white;
  }
  /* header for smaller screens */
  .smaller-nav {
    display: flex;
    justify-content: space-between;
    align-items: center; 
  }

  /* styles for maintainence header*/
  .maintenance-notice {
    background-color: #f8d7da;
    color: #721c24;
    padding: 20px;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    text-align: center;
  }
  
  .notice-header {
    font-size: 1.2em;
    font-weight: bold;
  }
  
  .notice-details {
    font-size: 1em;
  }
  
  .notice-details strong {
    font-weight: bold;
  }
  
  
  /* Media Queries for smaller screens */
  @media (max-width: 767px) {
    .top-nav {
      display: flex;
      flex-direction: column;
      align-items: center; 
    }
    .top-nav .d-flex {
      display: flex;
      flex-direction: column;
      align-items: center; 
    }
    .nav-links {
      display: flex;
      justify-content: space-evenly;
      width: 100%;
    }
    .nav-item {
      display: none;
      margin: 0 10px; 
      width: 100%;
      padding: 5px;
    }
    .sign-in-btn {
      width: 100%;
      margin-right: 0px;
    }
    .smaller-nav .hamburger{
      display: block;
      font-size: 2rem; 
      cursor: pointer;
      margin-right : 5%; 
    }
    .smaller-nav {
      width : 100%;
    }
  }