/* 🔔 Bell Container */
.notification-bell-container {
  position: relative;
  margin-right: 16px;
}

.notification-bell {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f0f0f0;
}


.notification-bell {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  transition: transform 0.2s;
}

.notification-bell:hover {
  transform: scale(1.1);
}


.bell-icon {
  width: 35px;
  height: 35px;

  transition: color 0.2s ease;
}

.notification-bell:hover .bell-icon {
  color: #d4af37;
}

.notification-count {
  position: absolute;
  top: 4px;
  right: 2px;
  background-color: #d4af37;
  color: #1e1f22;
  font-size: 11px;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 12px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  display: none;
}

/* 🔽 Dropdown Container */
.notification-dropdown {
  position: absolute;
  top: 40px;
  right: 0;
  width: 500px;
  background-color: #3a2e32;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  z-index: 1000;
  border-top: 4px solid #d4af37;
}

.notification-dropdown.hidden {
  display: none;
}

/* 📝 Notification List */
.notification-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 340px;
  overflow-y: auto;
}

.notification-item {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid #3e3439;
  transition: background 0.2s ease;
  color: #f0e6d2;
  font-size: 0.88rem;
}

.notification-delete {
  margin-left: auto;
  background: transparent;
  border: none;
  color: #aaa;
  font-size: 14px;
  cursor: pointer;
  padding: 0 4px;
  transition: color 0.2s;
}

.notification-delete:hover {
  color: #f94b5c;
}

.notification-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}


.notification-item:hover {
  background-color: #2f272b;
}

.notification-item.unseen .notification-message {
  font-weight: 600;
  color: #d4af37;
}

/* 📸 Avatar */
.notification-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 12px;
  border: 1px solid #d4af37;
}

.notification-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 📋 Message Block */
.notification-content {
  flex: 1;
}

.notification-link {
  color: #f0e6d2;
  text-decoration: none;
  display: block;
  transition: color 0.2s ease;
  font-size: 0.88rem;
}

.notification-link:hover {
  color: #d4af37;
}

.notification-link:visited {
  color: #f0e6d2;
}

.notification-time {
  color: #a89e94;
  font-size: 0.75rem;
  margin-top: 2px;
}

/* 🕳 Empty State */
.notification-empty {
  padding: 16px;
  text-align: center;
  font-size: 0.88rem;
  color: #c2bcb5;
  background-color: #2f272b;
}


/* 🔔 Combined notification center */
.notification-center {
  display: flex;
  align-items: center;
  gap: 14px;                /* tighter spacing */
  background-color: transparent;
  border: 2px solid #f0f0f0;
  border-radius: 20px;      /* smaller curve = lower look */
  padding: 2px 10px;        /* less vertical padding */
  height: 34px;             /* lower pill */
  line-height: 1;           /* keeps icons aligned */
  margin-left: 10px;
}


.notification-btn {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f0f0f0;
  transition: transform 0.2s ease;
}

.notification-btn:hover {
  transform: scale(1.1);
  color: #d4af37;
}

.msg-icon {
  width: 22px;
  height: 22px;
}

.msg-count,
.notification-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background-color: #d4af37;
  color: #1e1f22;
  font-size: 11px;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 12px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

.notification-center {
  display: flex;
  align-items: center;
  gap: 14px;
  background-color: transparent;
  border: 2px solid #f0f0f0;
  border-radius: 20px;
  padding: 2px 10px;
  height: 34px;
  line-height: 1;
  margin-left: 10px;
  position: relative;
}

.notification-btn {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f0f0f0;
  transition: transform 0.2s ease;
  padding: 4px;
}

.notification-btn:hover {
  transform: scale(1.1);
  color: #d4af37;
}

.bell-icon {
  width: 24px;
  height: 24px;
  transition: color 0.2s ease;
}

.notification-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background-color: #d4af37;
  color: #1e1f22;
  font-size: 11px;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 12px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}


/* 📩 Message count badge */
.msg-count {
  position: absolute;
  top: -6px;
  right: -8px;   /* tuned for msg icon */
  background-color: #d4af37;
  color: #1e1f22;
  font-size: 11px;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 12px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}


/* 🔔 Bell count badge */
.notification-btn .notification-count {
  position: absolute;
  top: -4px;     /* lowered slightly */
  right: 1px;    /* nudged further right */
  background-color: #d4af37;
  color: #1e1f22;
  font-size: 11px;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 12px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}
