.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;

  display: flex;
  align-items: center;

  background:#888888cc;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);

  padding: 0 20px;
  z-index: 1000;
}

/* LOGO LEFT */
.logo {
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  color: rgb(0, 0, 0);
}

/* RIGHT SIDE */
.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* BUTTON */
.add-btn {
  background: #111;
  color: white;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 110%;
  right: 0;

  background: white;
  border: 1px solid #ddd;
  border-radius: 12px;

  padding: 8px;
  min-width: 180px;

  display: none;
  flex-direction: column;

  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.dropdown.active .dropdown-menu {
  display: flex;
}

.dropdown-menu button {
  border: none;
  background: none;
  padding: 10px 12px;
  text-align: left;
  cursor: pointer;
  border-radius: 8px;
}

.dropdown-menu button:hover {
  background: #f5f5f5;
}

/* NAV BUTTON BASE */
.btn {
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s;
}

/* PRIMARY (Add Car) */
.btn-primary {
  background: #111;
  color: white;
}

.btn-primary:hover {
  background: #000;
}

/* OUTLINE (BOSS) */
.btn-outline {
  border: 1px solid #111;
  color: #111;
  background: white;
}

.btn-outline:hover {
  background: #111;
  color: white;
}