.navbar {
  width: 100%;
  background-color: #000000;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  color: white;
  position: relative;
}

.navbar-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.navbar-right {
  display: flex;
  gap: 15px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-right.show {
  height: auto;
  opacity: 1;
  transform: translateY(0);
}

.logo {
  height: 40px;
  width: auto;
  margin-right: 15px;
}

.site-info {
  color: white;
}

.site-info h1 {
  font-size: 24px;
  margin: 0;
}

.slogan {
  font-size: 14px;
  color: #cccccc;
  margin: 5px 0 0;
  text-align: left;
}

.nav-btn {
  padding: 10px 20px;
  font-size: 16px;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.create-btn {
  color: #fff;
  background-color: #1f1f1f;
  border: 2px solid #fe5523;
  box-shadow: 0 0 8px #fe5523;
  transition: box-shadow 0.3s ease-in-out;
}

.view-btn {
  color: #fff;
  background-color: #1f1f1f;
  border: 2px solid #1bf4ff;
  box-shadow: 0 0 8px #1bf4ff;
  transition: box-shadow 0.3s ease-in-out;
}

.create-btn:hover {
  box-shadow: 0 0 10px #fe5523, 0 0 14px #fe5523;
}

.view-btn:hover {
  box-shadow: 0 0 10px #1bf4ff, 0 0 14px #1bf4ff;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    align-items: center;
    padding: 10px 15px;
  }

  .navbar-left {
    flex: 1;
    justify-content: flex-start;
  }

  .navbar-right {
    display: none;
  }
}

/* Hamburger Icon Styles */
.hamburger-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger-icon span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
}

/* Responsive Styles for Small Screens */
@media (max-width: 768px) {
  .navbar-right {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #1f1f1f;
    flex-direction: column;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }

  .navbar-right.show {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }

  .hamburger-icon {
    display: flex;
  }
}

/* Dropdown Menu Styling */
.dropdown-menu {
  display: none;
  flex-direction: column;
  gap: 15px;
  position: absolute;
  top: 60px;
  right: 20px;
  background-color: #1f1f1f;
  border-radius: 8px;
  padding: 15px 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 10;
  transition: all 0.3s ease-in-out;
}

.dropdown-menu.show {
  display: flex;
}

.dropdown-link {
  color: white;
  font-size: 16px;
  text-decoration: none;
}

.dropdown-link:hover {
  color: #fe5523;
}

@media (max-width: 768px) {
  .navbar-right {
    display: none;
  }

  .hamburger-icon {
    display: flex;
  }
}

/* Responsive Styles for Small Screens */
@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    align-items: center;
    padding: 11px 15px;
  }

  .navbar-left {
    flex: 1;
    justify-content: flex-start;
  }

  .navbar-right {
    display: none;
  }

  .hamburger-icon {
    display: flex;
  }

  /* Toggle navbar on small screens */
  .navbar-right.show {
    display: flex;
    flex-direction: row;
    gap: 15px;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: black;
    padding: 10px;
  }

  /* Smaller font for .site-info elements */
  .site-info h1 {
    font-size: 18px;
    text-align: left;
  }

  .slogan {
    font-size: 12px;
    text-align: left;
  }
}
