/* Initially hide the dropdown */
.dropdown-content {
    display: none;
    z-index: 999;
}

/* Show the dropdown when toggled */
.dropdown-content.show {
    display: block;
}

/* Additional styles for dropdown */
.dropdown-content a {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: #333;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.sticky {
    background: #111827;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1;
    transition: ease-in 0.2s;
  }

  .sidebar {
    height: 100vh;;
    position: fixed;
    right: 0;
    top: 0;
    background: #444;
    color: #fff;
    opacity: 1;
    z-index: 9;
    transition: 300ms;
}