/* Navbar Container */
.cp-navbar {
  background: #fff;
  padding: 10px 20px;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logoMenuContainer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

/* Container inside */
.cp-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Logo */
.cp-logo img {
  height: 30px;
}

/* Menu Items */
.cp-menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.cp-menu-item {
  position: relative;
  margin: 0 15px;
}

.cp-menu-link {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  padding: 5px 10px;
  display: inline-block;
}

.cp-menu-link:hover {
  color: #2a9d8f;
}

/* Dropdown */
.cp-dropdown {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 35px;
  left: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 999;
}

.cp-dropdown li a {
  display: block;
  padding: 8px 15px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

.cp-dropdown li a:hover {
  background: #f9f9f9;
}

/* Show dropdown on hover */
.cp-menu-item:hover .cp-dropdown {
  display: block;
}

/* Right side */
.cp-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.cp-search {
  padding: 5px 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-right: 15px;
  font-size: 14px;
  width: 350px;
  height: 40px;
}

.cp-icons {
  margin: 0 8px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border: 1px solid #283b91;
  border-radius: 50%;
}

.cp-icons img {
  width: 20px;
  display: block;
  height: auto;
}
