#gadminbar {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  z-index: 1000000 !important;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  background-color: #333;
  color: white;
  padding: 10px 20px;
}

#gadminbar .toolbar-left,
#gadminbar .toolbar-right {
  display: flex;
  align-items: center;
}

#gadminbar .btn {
  background-color: #555;
  color: white;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  margin: 0 10px;
}

#gadminbar .btn:hover {
  background-color: #777;
}

#gadminbar .toolbar-left .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  padding: 5px 8px;
  background-color: #333;
  color: white;
  border: none;
  font-size: 14px;
  gap: 5px;
}

#gadminbar .toolbar-left img,
#gadminbar .toolbar-right img {
  width: 20px;
  height: 20px;
}

#gadminbar .toolbar-left .btn:hover {
  background-color: #555;
}

#gadminbar .toolbar-right .admin-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  padding: 5px 10px;
  background-color: #333;
  color: white;
  border: none;
  font-size: 14px;
  font-weight: 500;
  gap: 2px;
  margin-right: 10px;
}

#gadminbar .toolbar-right .admin-btn:hover {
  background-color: #555;
  border-radius: 8px 8px 0 0;
}

#gadminbar .toolbar-right img {
  width: 22px;
  height: 22px;
}

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

#gadminbar .dropdown-content {
  display: none;
  position: absolute;
  background-color: #555;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 999999999;
  top: 100%;
  transition: all 0.3s ease-in-out;
  padding: 10px 10px 20px 10px;
  border-radius: 0px 0px 5px 5px;
  border: 1px solid #333;
}

#gadminbar .dropdown-content a,
#gadminbar .dropdown-content button {
  color: white;
  padding: 5px 16px;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  text-align: left;
}

#gadminbar .dropdown-content a:hover,
#gadminbar .dropdown-content button:hover {
  background-color: #f1f1f1;
  color: black;
  border-radius: 5px;
}

#gadminbar .dropdown:hover .dropdown-content {
  display: block;
}

#gadminbar .dropdown:hover .admin-btn {
  background-color: #555;
  border-radius: 8px 8px 0 0;
}

@media (max-width: 712px) {
  #gadminbar .toolbar span {
    display: none;
  }
}