#menu-container {
    position: fixed;       /* Fixes the nav at the top */
    top: 0;                /* Aligns it to the top */
    left: 0;               /* Aligns it to the left */
    width: 100%;           /* Full width */
    background-color: #e3f2fd;
    z-index: 1000;         /* Ensures it stays above other elements */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: adds a subtle shadow */
 
}.top-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #e3f2fd;
    padding: 0.25rem 1rem;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  
  /* Left and right containers */
  .menu-left,
  .menu-right {
    display: flex;
    align-items: center;
  }
  
  /* Links */
  .top-menu a {
    color: #101010;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.75rem; 
    margin-left: 1.5rem;
    position: relative;
    transition: color 0.3s ease;
  }
  
  /* First item has no left margin */
  .menu-left a {
    margin-left: 0;
  }
  
  /* Hover underline effect */
  .top-menu a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #3b82f6;
    transition: width 0.3s ease;
  }
  
  .top-menu a:hover {
    color: #3b82f6;
  }
  
  .top-menu a:hover::after {
    width: 100%;
  }
  
  