/* header.css */

.header-left,
.header-center-left,
.header-center-right,
.header-right {
  display: flex;
  align-items: center;
}

.header-center {
  flex: 1;
  justify-content: center;
}

/* Search input and logo */
.logo {
  height: 36px;
}

/* 📌 Search Bar u headeru */
.search-bar {
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.search-bar input[type="text"] {
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 5px 0 0 5px;
  outline: none;
  font-size: 14px;
}

.search-bar button {
  padding: 6px 10px;
  background-color: #3e839e;
  border: none;
  border-radius: 0 5px 5px 0;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-bar button:hover {
  background-color: #326f89;
}


.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #4c788f;
  padding: 0 10px;
  text-decoration: none;
  height: 56px;
  position: relative; /* samo ako treba za badge */
}


.nav-item i {
  font-size: 25px;
  margin-bottom: 2px;
  position: relative; /* samo ako nije već uključeno */
}

.nav-item a {
  color: inherit;
  text-decoration: none;
}


.with-divider {
  border-left: 1px solid #ddd;
  padding-left: 12px;
  margin-left: 12px;
}


.notif-dropdown {
  position: relative;
}

.notif-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  width: 300px;
  display: none;
  z-index: 9999;
  border-radius: 5px;
  padding: 5px 0;
}

.notif-dropdown:hover .notif-dropdown-menu {
  display: block;
}

.notif-dropdown-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.notif-dropdown-menu li {
  padding: 10px 15px;
  border-bottom: 1px solid #f0f0f0;
}

.notif-dropdown-menu li a {
  display: block;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.notif-dropdown-menu li a:hover {
  background: #f5f5f5;
}

.notif-dropdown-menu li small {
  display: block;
  font-size: 11px;
  color: #888;
}

.notif-badge {
  position: absolute;
  top: 6px;          /* spusti ili podigni kako ti treba */
  right: -4px;
  background-color: red;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 12px;
  line-height: 1;
  font-weight: bold;
  z-index: 10;
}

.new-member-badge {
  background: #28a745;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 6px;
}


