
#notification-bell {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: black;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  cursor: pointer;
  z-index: 9999;
}
#notification-bell #badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: red;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 12px;
}
#notification-drawer {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 340px;
  max-height: 400px;
  overflow-y: auto;
  background: #f5f5f5;
  color: black;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  padding: 16px;
  border-radius: 12px;
  z-index: 9999;
  display: none;
  font-family: Roboto, sans-serif;
  transition: all 0.3s ease-in-out;
}
#notification-drawer.dark {
  background: #333;
  color: white;
}
#notification-drawer h3 {
  margin-bottom: 12px;
  font-weight: bold;
  text-transform: uppercase;
}
#nd-exit-button {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #999;
  color: white;
  border: none;
  border-radius: 16px;
  padding: 4px 10px;
  cursor: pointer;
  font-size: 12px;
  z-index: 9999;
}
.post-entry {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}
.post-entry .thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-right: 10px;
  border-radius: 8px;
}
