/* Basic reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Navbar styling */
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(to right, #e2bd4d, #555, #06db4d); /* Darker on the sides, lighter in the middle */
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
  
  
  .navbar-brand {
    font-size: 24px;
    font-weight: bold;
  }
  
  .navbar-links {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  /* Mobile view for dropdown with circular gradient */
.navbar-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; /* Position below the navbar */
    left: 0;
    width: 100%;
    background: radial-gradient(circle, #49493e, #31c2d2, #eaf1aa); /* Circular gradient */
    padding: 20px;
    border-radius: 10px; /* Optional: round the corners */
    z-index: 999;
  }
  
  .navbar-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 0;
  }
  
  .navbar-links a,
  .dropdown {
    color: white;
    text-decoration: none;
    font-size: 18px;
    position: relative;
  }
  
  .search-bar input {
    padding: 5px 10px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
  }
  
  /* Dropdown menu */
  .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #8e8181;
    min-width: 160px;
    padding: 10px;
    border-radius: 5px;
    z-index: 1;
  }
  
  .dropdown-content a {
    color: white;
    padding: 8px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* Hamburger menu */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .hamburger span {
    background: white;
    height: 3px;
    width: 25px;
    margin: 4px;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .navbar-links {
      display: none;
      flex-direction: column;
      background: #333;
      width: 100%;
      position: absolute;
      top: 100%;
      left: 0;
    }
  
    .navbar-links.active {
      display: flex;
    }
  
    .hamburger {
      display: flex;
    }
  
    .dropdown-content {
      position: static;
      padding-left: 20px;
    }
  
    .search-bar {
      margin-left: auto;
    }
  }
  
  /* Content and footer styling */
  .content-wrapper {
    /* padding-top: 60px; Space for fixed navbar */
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    flex: 1;
    display: flex;
    background-color: antiquewhite;
    flex-direction: column;
    min-height: calc(100vh - 30px); /* Minus the footer height */
  }
  
  .footer {
    background-color: #333;
    color: rgb(247, 39, 39);
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
  }
  