.notifications-bell {
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding: 8px;
}

.bell-icon {
  font-size: 18px;
  color: #6b7280;
}

.notifications-bell:hover .bell-icon {
  color: #374151;
}

.notification {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 12px;
  padding: 16px;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.notification.unread {
  border-left: 4px solid #3b82f6;
  background: #f8fafc;
}

.notification-content {
  flex: 1;
}

.notification-icon {
  font-size: 20px;
  line-height: 1;
}

.notification-message {
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 4px;
}

.notification-time {
  font-size: 12px;
  color: #6b7280;
}

.notification-dismiss {
  background: none;
  border: none;
  color: #3b82f6;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s;
}

.notification-dismiss:hover {
  background: #eff6ff;
  color: #2563eb;
}

.notifications-header {
  padding: 16px;
  border-bottom: 1px solid #f3f4f6;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notifications-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
}

.mark-all-read-btn {
  background: none;
  border: none;
  color: #3b82f6;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}

.mark-all-read-btn:hover {
  color: #2563eb;
}

.notifications-list {
  max-height: 300px;
  overflow-y: auto;
}

.no-notifications {
  padding: 24px;
  text-align: center;
  color: #6b7280;
  font-size: 14px;
}

.notifications-counter {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ef4444;
  color: white;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
}

.notifications-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  min-width: 320px;
  max-height: 400px;
  overflow-y: auto;
  z-index: 1000;
}

.notifications-dropdown .notification {
  margin-bottom: 0;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #f3f4f6;
  padding: 12px 16px;
  box-shadow: none;
}

.notifications-dropdown .notification:last-child {
  border-bottom: none;
}

.notifications-dropdown .notification.unread {
  border-left: none;
  background: #f8fafc;
}

.notifications-dropdown .notification-icon {
  font-size: 16px;
}

.notifications-dropdown .notification-message {
  font-size: 14px;
  margin-bottom: 2px;
}

.notifications-dropdown .notification-time {
  font-size: 11px;
}

.notification-link {
  text-decoration: none;
  color: inherit;
  display: block;
  flex: 1;
}

.notification-link:hover {
  text-decoration: none;
  color: inherit;
}

.notification.unread:hover {
  background: #e0f2fe;
}

.notification-action {
  font-size: 12px;
  color: #3b82f6;
  margin-top: 4px;
  font-weight: 500;
}

.notifications-dropdown .notification-action {
  font-size: 11px;
  margin-top: 2px;
}
