body {
  margin: 0;
  font-family: sans-serif;
  background-color: #3a3a3a;
}

.top-bar {
  width: 100%;
  height: 40px;
  background-color: #1a1a1a;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 2rem;
  padding-right: 2rem;
  box-sizing: border-box;
}

.logo {
  font-size: clamp(0.5rem, 1.0vw, 2.5rem);
  font-weight: bold;
  color: rgb(122, 122, 122);
  position: absolute;
  left: 2rem;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.drop-text {
  color: white;
  font-size: 1rem;
  cursor: pointer;
}

.down-arrow {
  font-size: 0.8rem;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 20px;
  background-color: #333;
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  animation: dropDown 0.3s ease-out forwards;
}

.dropdown-content.show {
  display: block;
}

.product-header {
  color: rgb(136, 136, 136);
  font-size: 1.1rem;
  padding: 12px 16px;
  font-weight: bold;
  margin: 0;
  background-color: #000000;
}

.dropdown-content a {
  color: rgb(255, 255, 255);
  font-size: 0.9rem;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #444;
}

@keyframes dropDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
